外观模式
示例代码git地址:https://gitee.com/zyxscuec/Design-pattern.git
文章目录
(1)概念
外观模式(Facade Pattern)隐藏系统的复杂性,并向客户端提供了一个客户端可以访问系统的接口。这种类型的设计模式属于结构型模式,它向现有的系统添加一个接口,来隐藏系统的复杂性。
这种模式涉及到一个单一的类,该类提供了客户端请求的简化方法和对现有系统类方法的委托调用。
(2)适用场景
1、为复杂的模块或子系统提供外界访问的模块。
2、子系统相对独立。
3、预防低水平人员带来的风险。
注意事项:在层次化结构中,可以使用外观模式定义系统中每一层的入口。
(3)代码示例
我们将创建一个 Shape 接口和实现了 Shape 接口的实体类。下一步是定义一个外观类 ShapeMaker。
ShapeMaker 类使用实体类来代表用户对这些类的调用。FacadePatternDemo,我们的演示类使用 ShapeMaker 类来显示结果。
创建一个接口。
- Shape
package com.alibaba.design.facadepattern; /** * @author zhouyanxiang * @create 2020-08-2020/8/2-18:18 */ public interface Shape { void draw(); }
创建实现接口的实体类。
- Rectangle
package com.alibaba.design.facadepattern; /** * @author zhouyanxiang * @create 2020-08-2020/8/2-18:18 */ public class Rectangle implements Shape { @Override public void draw() { System.out.println("Rectangle::draw()"); } }
- Circle
package com.alibaba.design.facadepattern; /** * @author zhouyanxiang * @create 2020-08-2020/8/2-18:20 */ public class Circle implements Shape { @Override public void draw() { System.out.println("Circle::draw()"); } }
- Square
package com.alibaba.design.facadepattern; /** * @author zhouyanxiang * @create 2020-08-2020/8/2-18:19 */ public class Square implements Shape { @Override public void draw() { System.out.println("Square::draw()"); } }
创建一个外观类。
- ShapeMaker
package com.alibaba.design.facadepattern; /** * @author zhouyanxiang * @create 2020-08-2020/8/2-18:20 */ public class ShapeMaker { private Shape circle; private Shape rectangle; private Shape square; public ShapeMaker() { circle = new Circle(); rectangle = new Rectangle(); square = new Square(); } public void drawCircle(){ circle.draw(); } public void drawRectangle(){ rectangle.draw(); } public void drawSquare(){ square.draw(); } }
客户端测试类
package com.alibaba.design.facadepattern; /** * @author zhouyanxiang * @create 2020-08-2020/8/2-18:20 */ public class FacadePatternDemo { public static void main(String[] args) { ShapeMaker shapeMaker = new ShapeMaker(); shapeMaker.drawCircle(); shapeMaker.drawRectangle(); shapeMaker.drawSquare(); } }
输出结果:
(4)该模式在源码中的体现
JDK类库中的外观模式
java.lang.Class
javax.faces.webapp.FacesServlet
Class中的forName(String name, boolean initialize ,ClassLoader loader)方法调用了ClassLoader、System接口。
@CallerSensitive public static Class<?> forName(String name, boolean initialize, ClassLoader loader) throws ClassNotFoundException { Class<?> caller = null; SecurityManager sm = System.getSecurityManager(); if (sm != null) { // Reflective call to get caller class is only needed if a security manager // is present. Avoid the overhead of making this call otherwise. caller = Reflection.getCallerClass(); if (sun.misc.VM.isSystemDomainLoader(loader)) { ClassLoader ccl = ClassLoader.getClassLoader(caller); if (!sun.misc.VM.isSystemDomainLoader(ccl)) { sm.checkPermission( SecurityConstants.GET_CLASSLOADER_PERMISSION); } } } return forName0(name, initialize, loader, caller); }
FacesServlet实现了Servlet接口,在实现方法service()中调用了HttpServletRequest、HttpServletResponse、ApplicationContext接口的方法。
(5)外观模式的优缺点
- 优点:
1、减少系统相互依赖。
2、提高灵活性。
3、提高了安全性。 - 缺点:不符合开闭原则,如果要改东西很麻烦,继承重写都不合适。