美文网首页
门面模式

门面模式

作者: 最美时光在路上 | 来源:发表于2016-10-27 23:26 被阅读0次
    1. 子系统(细节)角色
    public class SubSystem {
        protected void doSomething(){
            //子系统业务处理
        }
    }
    
    1. 门面角色
    public class Facade {
        //屏蔽子系统调用细节
        private SubSystem subSystem = new SubSystem();
        //暴露给外界的调用方法
        public void method() {
            //业务逻辑处理
            this.subSystem.doSomething();
        }
    }
    
    1. 场景使用
        Facade facade = new Facade();
        facade.method();
    

    相关文章

      网友评论

          本文标题:门面模式

          本文链接:https://www.haomeiwen.com/subject/bivsuttx.html