首页 > 代码库 > 外观模式
外观模式
定义
外观模式(Facade Pattern)要求一个子系统的外部与其内部的通信必须通过一个统一多的对象进行。外观模式定义了一个高层次的接口,使得子系统更易于使用。
外观模式通用类图
Facade 外观角色,客户端可以调用这个角色的方法。此角色知晓子系统的所有功能和责任。一般情况下,本角色会将所有从客户端发来的请求委派到相应的子系统去,也就是说该角色没有实际的业务逻辑,只是一个委托类。
Subsystem子系统角色
是一个类的集合。子系统并不知道外观的存在,对于子系统而言,外观仅仅是另外一个客户端而已。
外观模式的优点:
减少系统的相互依赖。
外观模式通过封装子系统,向上层模块提供统一的接口,从而降低的上层模块与子系统的过度耦合。
提高了灵活性。
提高安全性
缺点:
不符合开闭原则,即对修改关闭,对扩展开放,当业务逻辑比较复杂时,要修改外观的功能就必须去修改外观角色的代码。
通用源码
#include <iostream> using namespace std; class SubSystemOne { private: SubSystemOne(){}; void MethodOne(){ cout<<"子系统方法一"<<endl; } friend class Facade; }; class SubSystemTwo { private: SubSystemTwo(){}; void MethodTwo(){ cout<<"子系统方法二"<<endl; } friend class Facade; }; class SubSystemThree { private: SubSystemThree(){}; void MethodThree(){ cout<<"子系统方法三"<<endl; } friend class Facade; }; class SubSystemFour { private: SubSystemFour(){}; void MethodFour(){ cout<<"子系统方法四"<<endl; } friend class Facade; }; class Facade{ SubSystemOne one; SubSystemTwo two; SubSystemThree three; SubSystemFour four; public: void MethodA() { cout<<"方法组A"<<endl; one.MethodOne(); two.MethodTwo(); four.MethodFour(); } void MethodB() { cout<<"方法组B"<<endl; two.MethodTwo(); three.MethodThree(); } }; int main() { Facade facade; facade.MethodA(); facade.MethodB(); return 0; }
运行结果
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。