1 认识设计模式

1.1 什么是设计模式

所谓设计模式,就是对经常出现的软件设计问题的成熟解决方案。

很多人把设计模式想象成非常高深的概念,实际上设计模式仅仅是对特定问题的一种惯性思维。笔者见过一些学员喜欢抱着一本设计模式的书研究,以期成为一个“高手”,实际上设计模式的理解必须以足够的代码积累量作为基础,最好是经历过某种痛苦,或者正在经历一种苦痛,就会对设计模式有较深的感受。

1.2 设计模式的目的

编写软件的过程中,程序员面临着来自耦合性、内聚性以及可维护性、可扩展性、重用性、灵活性等多方面的挑战,设计模式是为了让程序拥有更好的:

  • 代码可重用性。相同功能的代码,不用多次编写;
  • 可读性。便于其他程序员的阅读和理解;
  • 可扩展性。当需要增加新功能时,非常方便;
  • 可靠性。当增加新的功能后,对原来的功能没有影响;
  • 使程序呈现高内聚、低耦合的特点。

1.3 什么是设计模式的原则

设计模式原则,其实就是程序员在编程时,应当遵循的原则,也就是各种设计模式的基础,即设计模式为什么这样设计的依据。

设计模式的七大原则有:

  1. 单一职责原则
  2. 接口隔离原则
  3. 依赖倒置原则
  4. 里氏替换原则
  5. 开闭原则
  6. 迪米特法则
  7. 合成复用原则

2 单一职责原则

2.1 什么是单一职责原则

  1. 对类来说,一个类应该只负责一项职责。如类A负责两个不同职责:职责1,职责2,当职责1需求变更而改变类A时,可能造成职责2执行错误,所以需要将类A的粒度分解为A1A2

2.2 应用实例

方案一:

  1. /**
  2. * 方式一的run方法中,违反了单一职责原则,
  3. * 解决的方案是根据交通工具运行方法不同,分解成不同类即可
  4. */
  5. public class SingleResponsebility1 {
  6. public static void main(String[] args) {
  7. Vehicle vehicle = new Vehicle();
  8. vehicle.run("汽车");
  9. vehicle.run("摩托");
  10. vehicle.run("飞机");
  11. }
  12. }
  13. class Vehicle {
  14. public void run(String vehicle) {
  15. System.out.println(vehicle+"在公路上跑");
  16. }
  17. }

方案二:

  1. /**
  2. * 方案二遵循单一职责原则
  3. * 但是这样做的改动很大,即将类分解,同时修改客户端
  4. * 改进:直接修改Vehicle类,改动的代码会比较少
  5. */
  6. public class SingleResponsibility2 {
  7. public static void main(String[] args) {
  8. Vehicle1 vehicle1 = new Vehicle1();
  9. vehicle1.run("汽车");
  10. Vehicle2 vehicle2 = new Vehicle2();
  11. vehicle2.run("轮船");
  12. Vehicle3 vehicle3 = new Vehicle3();
  13. vehicle3.run("飞机");
  14. }
  15. }
  16. class Vehicle1{
  17. public void run(String vehicle){
  18. System.out.println(vehicle+"在地上跑");
  19. }
  20. }
  21. class Vehicle2{
  22. public void run(String vehicle){
  23. System.out.println(vehicle+"在水上跑");
  24. }
  25. }
  26. class Vehicle3{
  27. public void run(String vehicle){
  28. System.out.println(vehicle+"在天上跑");
  29. }
  30. }

方案三:

  1. /**
  2. * 这种修改方法没有对原来的类做大的修改,只是增加方法
  3. * 这里虽然没有在类这个级别上遵循单一职责原则,但是在方法级别上,仍然遵守这个原则
  4. */
  5. public class SingleResonsibility3 {
  6. public static void main(String[] args) {
  7. Vehicle4 vehicle4 = new Vehicle4();
  8. vehicle4.run("汽车");
  9. vehicle4.run2("轮船");
  10. vehicle4.run3("飞机");
  11. }
  12. }
  13. class Vehicle4{
  14. public void run(String vehicle){
  15. System.out.println(vehicle+"在地上跑");
  16. }
  17. public void run2(String vehicle){
  18. System.out.println(vehicle+"在水上跑");
  19. }
  20. public void run3(String vehicle) {
  21. System.out.println(vehicle + "在天上跑");
  22. }
  23. }

2.3 注意事项

  • 降低类的复杂度,一个类只负责一项职责;
  • 提高类的可读性、可维护性;
  • 降低变更引起的风险;
  • 通常情况下,我们应当遵守单一职责原则,只有逻辑足够简单,才可以在代码级违反单一职责原则:只有类中方法数量足够少,可以在方法级别保存单一职责原则。

3 接口隔离原则

3.1 什么是接口隔离原则

客户端不应该依赖它不需要的接口,即一个类对另一个类的依赖应该建立在最小的接口上。

3.2 应用实例

如图,类A通过接口Interface1依赖类B,类C通过接口Interface1依赖类D,如果接口Interface1对于类A和类C来说不是最小接口,那么类B和类D必须去实现他们不需要的方法。

image.png

  1. public class Segregation1 {
  2. }
  3. //接口
  4. interface Interface1 {
  5. void operation1();
  6. void operation2();
  7. void operation3();
  8. void operation4();
  9. void operation5();
  10. }
  11. class B implements Interface1 {
  12. @Override
  13. public void operation1() {
  14. System.out.println("B实现了operation1");
  15. }
  16. @Override
  17. public void operation2() {
  18. System.out.println("B实现了operation2");
  19. }
  20. @Override
  21. public void operation3() {
  22. System.out.println("B实现了operation3");
  23. }
  24. @Override
  25. public void operation4() {
  26. System.out.println("B实现了operation4");
  27. }
  28. @Override
  29. public void operation5() {
  30. System.out.println("B实现了operation5");
  31. }
  32. }
  33. class D implements Interface1 {
  34. @Override
  35. public void operation1() {
  36. System.out.println("D实现了operation1");
  37. }
  38. @Override
  39. public void operation2() {
  40. System.out.println("D实现了operation2");
  41. }
  42. @Override
  43. public void operation3() {
  44. System.out.println("D实现了operation3");
  45. }
  46. @Override
  47. public void operation4() {
  48. System.out.println("D实现了operation4");
  49. }
  50. @Override
  51. public void operation5() {
  52. System.out.println("D实现了operation5");
  53. }
  54. }
  55. class A {
  56. public void depend1(Interface1 i) {
  57. i.operation1();
  58. }
  59. public void depend2(Interface1 i) {
  60. i.operation2();
  61. }
  62. public void depend3(Interface1 i) {
  63. i.operation3();
  64. }
  65. }
  66. class C {
  67. public void depend1(Interface1 i) {
  68. i.operation1();
  69. }
  70. public void depend4(Interface1 i) {
  71. i.operation4();
  72. }
  73. public void depend5(Interface1 i) {
  74. i.operation5();
  75. }
  76. }

按隔离原则应当这样处理:将接口Interface1拆分为独立的几个接口,类A和类C分别与他们需要的接口建立依赖关系。也就是采用接口隔离原则。

image.png

  1. public class Segregation2 {
  2. public static void main(String[] args) {
  3. A a = new A();
  4. a.depend1(new B());
  5. a.depend2(new B());
  6. a.depend3(new B());
  7. C c = new C();
  8. c.depend1(new D());
  9. c.depend4(new D());
  10. c.depend5(new D());
  11. }
  12. }
  13. //接口
  14. interface Interface1 {
  15. void operation1();
  16. }
  17. interface Interface2 {
  18. void operation2();
  19. void operation3();
  20. }
  21. interface Interface3 {
  22. void operation4();
  23. void operation5();
  24. }
  25. class B implements Interface1, Interface2 {
  26. @Override
  27. public void operation1() {
  28. System.out.println("B实现了operation1");
  29. }
  30. @Override
  31. public void operation2() {
  32. System.out.println("B实现了operation2");
  33. }
  34. @Override
  35. public void operation3() {
  36. System.out.println("B实现了operation3");
  37. }
  38. }
  39. class D implements Interface1, Interface3 {
  40. @Override
  41. public void operation1() {
  42. System.out.println("D实现了operation1");
  43. }
  44. @Override
  45. public void operation4() {
  46. System.out.println("D实现了operation4");
  47. }
  48. @Override
  49. public void operation5() {
  50. System.out.println("D实现了operation5");
  51. }
  52. }
  53. class A {
  54. public void depend1(Interface1 i) {
  55. i.operation1();
  56. }
  57. public void depend2(Interface2 i) {
  58. i.operation2();
  59. }
  60. public void depend3(Interface2 i) {
  61. i.operation3();
  62. }
  63. }
  64. class C {
  65. public void depend1(Interface1 i) {
  66. i.operation1();
  67. }
  68. public void depend4(Interface3 i) {
  69. i.operation4();
  70. }
  71. public void depend5(Interface3 i) {
  72. i.operation5();
  73. }
  74. }

4 依赖倒转原则

4.1 什么是依赖倒转原则

  1. 依赖倒转原则是指高层模块不应该依赖低层模块,二者都应该依赖其抽象;抽象不应该依赖细节,细节应该依赖抽象;依赖倒转的中心思想是面向接口编程。
  2. 依赖倒转原则是基于这样的设计理念:相对于细节的多变性,抽象的东西要稳定的多。以抽象为基础搭建的架构比以细节为基础的架构要稳定的多。在java中,抽象指的是接口或者抽象类,细节就是具体的实现类。
  3. 使用接口或抽象类的目的是制定好规范,而不涉及任何具体的操作,把展现细节的任务交给他们的实现类去完成。

4.2 应用实例

请编程完成persion接收消息的功能。

方案一:

  1. public class DependecyInversion {
  2. public static void main(String[] args) {
  3. Persion persion = new Persion();
  4. persion.receive(new Email());
  5. }
  6. }
  7. class Email {
  8. public String getInfo() {
  9. return "电子邮件:Hello World!!!";
  10. }
  11. }
  12. class Persion {
  13. public void receive(Email e) {
  14. System.out.println(e.getInfo());
  15. }
  16. }

方案二

  1. /**
  2. * 如果我们获取的对象是微信、短信等等,则新增类,同时Persion也要增加相应的接收方法
  3. * 解决思路:引入一个抽象的接口IReceiver,表示接收者,这样Persion类与接口IReceiver发生依赖
  4. * 因为Email、WeChat等等属于接收的范围,它们各自实现IReceiver接口就可以,这样我们就符合依赖倒转原则
  5. */
  6. public class DependecyInversion2 {
  7. public static void main(String[] args) {
  8. Persion2 persion2 = new Persion2();
  9. persion2.receive(new Email2());
  10. persion2.receive(new WeChat());
  11. }
  12. }
  13. interface IReceiver {
  14. public String getInfo();
  15. }
  16. class Email2 implements IReceiver {
  17. @Override
  18. public String getInfo() {
  19. return "电子邮件:Hello World!";
  20. }
  21. }
  22. class WeChat implements IReceiver {
  23. @Override
  24. public String getInfo() {
  25. return "微信消息:Hello weixin";
  26. }
  27. }
  28. class Persion2 {
  29. public void receive(IReceiver i) {
  30. System.out.println(i.getInfo());
  31. }
  32. }

4.3 依赖传递的三种方式

接口传递、构造方法传递、setter方法传递。

  1. //第一种方式:接口传递
  2. //开关的接口
  3. interface IOpenAndClose {
  4. public void opoen(ITV tv);//抽象方法,接收接口
  5. }
  6. interface ITV {//ITV接口
  7. public void play();
  8. }
  9. //实现接口
  10. class OpenAndColse implements IOpenAndClose {
  11. @Override
  12. public void opoen(ITV tv) {
  13. tv.play();
  14. }
  15. }
  1. //方式二:构造方法传递
  2. interface IOpenAndClose {
  3. public void open();//抽象方法
  4. }
  5. interface ITV {//ITV接口
  6. public void play();
  7. }
  8. class OpenAndClose implements IOpenAndClose {
  9. public ITV tv;//成员
  10. public OpenAndClose(ITV tv) {//构造方法
  11. this.tv = tv;
  12. }
  13. @Override
  14. public void open() {
  15. this.tv.play();
  16. }
  17. }
  1. //方式三:setter方法传递
  2. interface IOpenAndClose {
  3. public void open();//抽象方法
  4. }
  5. interface ITV {//ITV接口
  6. public void play();
  7. }
  8. class OpenAndClose implements IOpenAndClose {
  9. private ITV tv;
  10. public void setTv(ITV tv) {
  11. this.tv = tv;
  12. }
  13. @Override
  14. public void open() {
  15. this.tv.play();
  16. }
  17. }

4.4 注意事项

底层模块尽量都要有抽象类或接口,或者两者都有,程序稳定性更好。

变量的声明类型尽量是抽象类或接口,这样我们的变量引用和实际对象间,就存在一个缓冲层,利于程序扩展和优化。

继承时要遵循里氏替换原则。

5 里氏替换原则

5.1 什么是里氏替换原则

关于继承性的思考和说明

继承包含这样一层含义:父类中凡是已经实现好的方法,实际上是在设定规范和契约,虽然它不强制要求所有的子类必须遵循这些契约,但是如果子类对这些已经实现的方法任意修改,就会对整个继承体系造成破坏。

继承在给程序设计带来便利的同时,也带来了弊端。比如使用继承会给程序带来侵入性,程序的可移植性降低,增加对象间的耦合性,如果一个类被其他的类所继承,则当这个类需要修改时,必须考虑到所有的子类,并且父类修改后,所有涉及到子类的功能都有可能产生故障。

所以,在编程中,如何正确的使用继承?使用里氏替换原则。

基本介绍

里氏替换原则是由麻省理工学院的一位姓里的女士在1988年提出的。

如果对每个类型为T1的对象o1,都有类型为T2的对象o2,使得以T1定义的所有程序P在所有的对象o1都带换成o2时,程序P的行为没有发生变化,那么类型T2是类型T1的子类型。换句话说,所有引用基类的地方必须能透明地使用其子类的对象。
在使用继承时,遵循里氏替换原则,在子类中尽量不要重写父类的方法。

里氏替换原则告诉我们,继承实际上让两个类耦合性增强了,在适当情况下,可以通过聚合、组合、依赖来解决问题。

5.2 应用实例

一个程序引发的问题和思考。

  1. public class Liskow1 {
  2. public static void main(String[] args) {
  3. A a = new A();
  4. System.out.println("11-3=" + a.func1(11, 3));
  5. B b = new B();
  6. System.out.println("11-3=" + b.func1(11, 3));//这里本意是求出11-3
  7. System.out.println("11+3+9=" + b.func2(11, 3));
  8. }
  9. }
  10. class A {
  11. // 重写了A类的方法,可能是无意识的
  12. public int func1(int num1, int num2) {
  13. return num1 - num2;
  14. }
  15. }
  16. //增加了一个功能
  17. class B extends A {
  18. public int func1(int a, int b) {
  19. return a + b;
  20. }
  21. public int func2(int a, int b) {
  22. return func1(a, b) + 9;
  23. }
  24. }
*我们发现原来运行正常的相减功能发生了错误,原因就是类B无意中重写了父类的方法,造成原有功能出现错误。在实际编程中,我们常常会通过重写父类的方法完成新的功能,这样写起来虽然简单,但整个继承体系的复用性会比较差,特别是运行多态比较频繁的时候。

*通用的做法是:原来的父类和子类都继承一个更通俗的基类,原有的继承关系去掉,
·采用依赖、聚合、组合等关系替代。·

image.png

public class Liskow {
    public static void main(String[] args) {
        A a = new A();
        System.out.println("11-3=" + a.func1(11, 3));
        B b = new B();
        //因为B类不再继承A类,因此调用者,不会再认为func1是求减法的。
        //调用完成的功能就会很明确
        System.out.println("11+3=" + b.func1(11, 3));
        System.out.println("11+3+9=" + b.func2(11, 3));
        //使用组合仍然可以使用到A类相关方法
        System.out.println("11-3=" + b.func3(11, 3));
    }
}

class Base {
//把更加基础的方法和成员写到Base类
}

class A extends Base {
    // 重写了A类的方法,可能是无意识的
    public int func1(int num1, int num2) {
        return num1 - num2;
    }
}

class B extends Base {
    //如果B需要使用A的方法,使用组合关系
    private A a = new A();

    public int func1(int a, int b) {
        return a + b;
    }

    public int func2(int a, int b) {
        return func1(a, b) + 9;
    }

    //如果我们仍然想使用A的方法
    public int func3(int a, int b) {
        return this.a.func1(a, b);
    }
}

6 开闭原则

6.1 什么是开闭原则

开闭原则是编程中最基础、最重要的设计原则。
一个软件实体如类、模块和函数应该对扩展开放(对提供方),对修改关闭(对适用方)。用抽象构建框架,用实现扩展细节。
当软件需要变化时,尽量通过扩展软件实体的行为来实现变化,而不是通过修改已有的代码来实现变化。
编程中遵循其他原则,以及使用设计模式的目的就是遵循开闭原则。

6.2 应用实例

看一段画图代码。

image.png

public class Ocp {
    public static void main(String[] args) {
        GraphicEditor graphicEditor = new GraphicEditor();
        graphicEditor.drawShape(new Rectangle());
        graphicEditor.drawShape(new Circle());
    }
}

//这是一个用于绘图的类
class GraphicEditor {
    //接收Shape时对象,然后根据type,来绘制不同的图形
    public void drawShape(Shape s) {
        if (s.m_type == 1) {
            drawRectangle(s);
        } else if (s.m_type == 2) {
            drawCircle(s);
        }
    }

    public void drawRectangle(Shape r) {
        System.out.println("绘制矩形");
    }

    public void drawCircle(Shape r) {
        System.out.println("绘制圆形");
    }
}

//Shape类,基类
class Shape {
    int m_type;
}

class Rectangle extends Shape {
    Rectangle() {
        super.m_type = 1;
    }
}

class Circle extends Shape {
    Circle() {
        super.m_type = 2;
    }
}
这段代码的优点是比较好理解,简单易操作。

缺点是违反了设计模式的开闭原则,即当我们给类增加新功能的时候,尽量不修改代码,或者尽可能少修改代码。

比如我们这时要新增加一个图形种类:三角形,我们需要修改的地方较多。

改进方案:把Shape类做成抽象类,并提供一个抽象的draw方法,让子类去实现即可,这样我们有新的图形种类时,只需要让新的图形类继承Shape,并实现draw方法即可,“使用方”的代码就不需要修改,满足了开闭原则。
public class Ocp {
    public static void main(String[] args) {
        GraphicEditor graphicEditor = new GraphicEditor();
        graphicEditor.drawShape(new Rectangle());
        graphicEditor.drawShape(new Circle());
    }
}

//这是一个用于绘图的类
class GraphicEditor {
    //接收Shape时对象,然后根据type,来绘制不同的图形
    public void drawShape(Shape s) {
        s.draw();
    }
}

//Shape类,基类
abstract class Shape {
    public abstract void draw();//抽象方法
}

class Rectangle extends Shape {
    @Override
    public void draw() {
        System.out.println("绘制矩形");
    }
}

class Circle extends Shape {
    @Override
    public void draw() {
        System.out.println("绘制圆形");
    }
}

7 迪米特法则

7.1 什么是迪米特法则

一个对象应该对其他对象保持最少的了解。

类与类关系越密切,耦合度越大。

迪米特法则又叫最少知道原则,即一个类对自己依赖的类知道的越少越好。也就是说,对于被依赖的类不管多么复杂,都尽量将逻辑封装在类的内部。对外除了提供 public方法,不对外泄露任何信息。

迪米特法则还有个更简单的定义:只与直接的朋友通信。

**直接的朋友**:每个对象都会与其他对象有耦合关系,只要两个对象之间有耦合关系,我们就说这两个对象之间是朋友关系。耦合的方式很多,依赖,关联,组合,聚合等。其中,我们称出现成员变量,方法参数,方法返回值中的类为直接的朋友,而出现在局部变量中的类不是直接的朋友。也就是说,陌生的类最好不要以局部变量的形式出现在类的内部。

7.2 应用实例

编程实现以下功能:有一个学校,下属有各个学院和总部,现要求打印出学校总部员工ID和学院员工的id。

public class Demeter {
    public static void main(String[] args) {
        SchoolManager schoolManager = new SchoolManager();
        schoolManager.printAllEmployee(new CollegeManager());
    }
}

//学校总部员工
class Employee {
    private String id;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }
}

//学院员工
class CollegeEmployee {
    private String id;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }
}

//管理学院员工的类
class CollegeManager {
    //返回学院的所有员工
    public List<CollegeEmployee> getAllEmployee() {
        List<CollegeEmployee> list = new ArrayList<CollegeEmployee>();
        for (int i = 0; i < 10; i++) {//增加了10个员工
            CollegeEmployee emp = new CollegeEmployee();
            emp.setId("学院员工id=" + i);
            list.add(emp);
        }
        return list;
    }
}

/**
 * 管理学校员工的类
 * 分析:SchoolManager类的直接朋友有哪些?
 * 直接朋友有“Employee”、“CollegeManager”
 * 非直接朋友有“CollegeEmployee”
 * 这就违背了迪米特法则
 */
class SchoolManager {
    //返回学校总部的员工
    public List<Employee> getAllEmployee() {
        List<Employee> list = new ArrayList<Employee>();

        for (int i = 0; i < 5; i++) { //增加了5个员工
            Employee emp = new Employee();
            emp.setId("学校总部员工id= " + i);
            list.add(emp);
        }
        return list;
    }

    //完成输出学校总部和学院员工信息的方法
    void printAllEmployee(CollegeManager sub) {
        //获取学院员工
        //CollegeEmployee是以局部变量的形式出现在SchoolManager类中
        //解决方案:将获取学院员工的方法封装到CollegeManager中
        List<CollegeEmployee> list1 = sub.getAllEmployee();
        System.out.println("------------学院员工------------");
        for (CollegeEmployee e : list1) {
            System.out.println(e.getId());
        }
        //获取学校总部员工
        List<Employee> list2 = this.getAllEmployee();
        System.out.println("------------学校总部员工------------");
        for (Employee e : list2) {
            System.out.println(e.getId());
        }
    }
}
前面设计的问题在于SchoolManager中,CollegeEmployee类并不是SchoolManager类的直接朋友。

按照迪米特法则,应该避免出现非直接朋友关系的耦合。

对代码按照迪米特法则进行改进如下:
public class Demeter {
    public static void main(String[] args) {
        SchoolManager schoolManager = new SchoolManager();
        schoolManager.printAllEmployee(new CollegeManager());
    }
}

//学校总部员工
class Employee {
    private String id;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }
}

//学院员工
class CollegeEmployee {
    private String id;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }
}

//管理学院员工的类
class CollegeManager {
    //返回学院的所有员工
    public List<CollegeEmployee> getAllEmployee() {
        List<CollegeEmployee> list = new ArrayList<CollegeEmployee>();
        for (int i = 0; i < 10; i++) {//增加了10个员工
            CollegeEmployee emp = new CollegeEmployee();
            emp.setId("学院员工id=" + i);
            list.add(emp);
        }
        return list;
    }

    //获取学院员工
    public void printEmployee() {
        List<CollegeEmployee> list1 = this.getAllEmployee();
        System.out.println("------------学院员工------------");
        for (CollegeEmployee e : list1) {
            System.out.println(e.getId());
        }
    }
}

/**
 * 管理学校员工的类
 * 分析:SchoolManager类的直接朋友有哪些?
 * 直接朋友有“Employee”、“CollegeManager”
 * 非直接朋友有“CollegeEmployee”
 * 这就违背了迪米特法则
 */
class SchoolManager {
    //返回学校总部的员工
    public List<Employee> getAllEmployee() {
        List<Employee> list = new ArrayList<Employee>();

        for (int i = 0; i < 5; i++) { //增加了5个员工
            Employee emp = new Employee();
            emp.setId("学校总部员工id= " + i);
            list.add(emp);
        }
        return list;
    }

    //完成输出学校总部和学院员工信息的方法
    void printAllEmployee(CollegeManager sub) {
        //获取学院员工
        sub.printEmployee();
        //获取学校总部员工
        List<Employee> list2 = this.getAllEmployee();
        System.out.println("------------学校总部员工------------");
        for (Employee e : list2) {
            System.out.println(e.getId());
        }
    }
}

7.3 注意事项

迪米特法则的核心是降低类之间的耦合性。

但是注意:由于每个类都减少了不必要的依赖,因此迪米特法则只是要求降低类间(对象间)耦合关系,并不是要求完全没有依赖关系。

8 合成复用原则

8.1 什么是合成复用原则

合成复用原则就是尽量使用合成/聚合的方式,而不是使用继承。

设计原则 - 图5

设计原则的核心思想

  • 找出应用中可能需要变化之处,把它们独立出来,不要和那些不需要变化的代码混在一起;
  • 针对接口编程,而不是针对实现编程;
  • 为了交互对象之间的松耦合设计而努力。