c++ 设计模式之外观模式

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

c++ 设计模式之外观模式_第1张图片


#include "stdafx.h"
#include

using namespace std;



class SubSystemOne
{
public:
	void MethodOne()
	{
		cout<<" this is system one "<MethodOne();
		_two->MethodTwo();
	}
	void MethorB()
	{
		_three->MethodThree();
		_four->MethodFour();
	}

private:
	SubSystemOne *_one;
	SubSystemTwo *_two;
	SubSystemThree *_three;
	SubSystemFour * _four;



};


// FacadeMode.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include"Facade.hpp"


int _tmain(int argc, _TCHAR* argv[])
{
	Facade *facade = new Facade();
	facade->MethorA();
	facade->MethorB();
	system("pause:");
	return 0;
}




你可能感兴趣的:(C++设计模式)