内容简介:外观模式是为了解决类与类之家的责任关系和依赖关系的,通过提供一个Facade类来隐藏这些复杂的类之间关系的调用,并提供一个接口,供外部调用,利用这种方式进行类之间的解耦以汽车启动为例,需要启动引擎,仪表盘,大灯等,有可能需要先启动引擎之后才可以启动仪表盘,或者大灯的启动依赖引擎的启动等,这个时候就需要一个Facade来隐藏这些复杂的依赖关系实例涉及的类:
外观模式是为了解决类与类之家的责任关系和依赖关系的,通过提供一个Facade类来隐藏这些复杂的类之间关系的调用,并提供一个接口,供外部调用,利用这种方式进行类之间的解耦
代码
以汽车启动为例,需要启动引擎,仪表盘,大灯等,有可能需要先启动引擎之后才可以启动仪表盘,或者大灯的启动依赖引擎的启动等,这个时候就需要一个Facade来隐藏这些复杂的依赖关系
实例涉及的类: Engine(引擎)
, Armaturenbrett(仪表盘)
, Headlight(大灯)
, Car(汽车类,facade类)
Engine
/** * @author: chenmingyu * @date: 2019/3/1 14:53 * @description: 引擎 */ public class Engine { public void start(){ System.out.println("启动引擎..."); } }
Armaturenbrett
/** * @author: chenmingyu * @date: 2019/3/1 15:02 * @description: 仪表盘 */ public class Armaturenbrett { public void start(){ System.out.println("启动仪表盘..."); } }
Headlight
/** * @author: chenmingyu * @date: 2019/3/1 14:53 * @description: */ public class Headlight { public void start(){ System.out.println("启动大灯..."); } }
Car
/** * @author: chenmingyu * @date: 2019/3/1 14:57 * @description: */ public class Car { /** * 发动机 */ private Engine engine; /** * 仪表盘 */ private Armaturenbrett armaturenbrett; /** * 大灯 */ private Headlight headlight; public Car() { this.engine = new Engine(); this.armaturenbrett = new Armaturenbrett(); this.headlight = new Headlight(); } public void start(){ System.out.println("启动汽车..."); engine.start(); armaturenbrett.start(); headlight.start(); System.out.println("汽车以启动..."); } }
测试
public static void main(String[] args) { Car car = new Car(); car.start(); }
输出
启动汽车... 启动引擎... 启动仪表盘... 启动大灯... 汽车以启动...
Car
类封装了启动引擎,仪表盘,大灯等操作,客户端只需要调用 car
类的 start()
方法即可启动上述组件,而不用去对实例化每个类然后去调用其 start()
,利用这种方式进行解耦。
以上所述就是小编给大家介绍的《设计模式 | 外观模式》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 设计模式——订阅模式(观察者模式)
- 设计模式-简单工厂、工厂方法模式、抽象工厂模式
- java23种设计模式-门面模式(外观模式)
- 设计模式-享元设计模式
- Java 设计模式之工厂方法模式与抽象工厂模式
- JAVA设计模式之模板方法模式和建造者模式
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Natural Language Processing with Python
Steven Bird、Ewan Klein、Edward Loper / O'Reilly Media / 2009-7-10 / USD 44.99
This book offers a highly accessible introduction to Natural Language Processing, the field that underpins a variety of language technologies, ranging from predictive text and email filtering to autom......一起来看看 《Natural Language Processing with Python》 这本书的介绍吧!