11.外观模式

外观模式(Facade),为子系统中的一组接口提供一个一致的界面,此模式定义了一个高层接口,这个接口使得这一子系统更加容易使用。

UML

测试代码

cpp 复制代码
#include <iostream>
using namespace std;
 
class SubSystemOne
{
public:
    void MethodOne(){
        cout << "MethodOne" << endl;
    }
};
class SubSystemTwo
{
public:
    void MethodTwo(){
        cout << "MethodTwo" << endl;
    }
};
 
class SubSystemThree
{
public:
    void MethodThree(){
        cout << "MethodThree" << endl;
    }
};
 
class SubSystemFour
{
public:
    void MethodFour(){
        cout << "SubSystemFour" << endl;
    }
};
 
class Facade
{
    SubSystemOne one;
    SubSystemTwo two;
    SubSystemThree three;
    SubSystemFour four;
public:
    void MethodA(){
        cout << endl << "方法组A()" << endl;
        one.MethodOne();
        two.MethodTwo();
        four.MethodFour();
    }
    void MethodB(){
        cout << endl << "方法组B()" << endl;
        one.MethodOne();
        three.MethodThree();
        four.MethodFour();
    }
};
 
int main(void)
{
    Facade f;
    f.MethodA();
    f.MethodB();
    return 0;
}

运行结果

方法组A()
MethodOne
MethodTwo
SubSystemFour
 
方法组B()
MethodOne
MethodThree
SubSystemFour
相关推荐
无敌岩雀1 天前
C++设计模式结构型模式———外观模式
c++·设计模式·外观模式
morning_judger4 天前
【设计模式系列】外观模式(十四)
java·设计模式·外观模式
zzzhpzhpzzz5 天前
设计模式——外观模式
设计模式·外观模式
Mr. zhihao6 天前
外观模式及运用场景
java·外观模式
小白7 天前
C# 结构型设计模式----外观模式
设计模式·外观模式
XYX的Blog8 天前
设计模式07-结构型模式(装饰模式/外观模式/代理模式/Java)
设计模式·代理模式·外观模式
且随疾风前行.14 天前
技术成神之路:设计模式(二十一)外观模式
设计模式·外观模式·1024程序员节
伯牙碎琴18 天前
十、结构型(外观模式)
外观模式
拥有一颗学徒的心1 个月前
设计模式——门面模式 | 外观模式
java·设计模式·团队开发·外观模式·设计规范
刷帅耍帅1 个月前
设计模式-外观模式
设计模式·外观模式