WEB开发网
开发学院软件开发C++ c++ 设计模式之 外观模式 阅读

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

 2012-07-23 21:48:08 来源:WEB开发网   
核心提示: 概念为一系列子系统提供一个统一的接口.外关模式一个高层次的接口使子系统更加容易的使用.类图示例代码 #include <iostream>// Subsystem 1class SubSystemOne{public:void MethodOne(){ std::cout << "

 概念

为一系列子系统提供一个统一的接口.外关模式一个高层次的接口使子系统更加容易的使用.
类图

示例代码
 
 
#include <iostream>

// Subsystem 1
class SubSystemOne
{
public:
	void MethodOne(){ std::cout << "SubSystem 1" << std::endl; };
};

// Subsystem 2
class SubSystemTwo
{
public:
	void MethodTwo(){ std::cout << "SubSystem 2" << std::endl; };
};

// Subsystem 3 
class SubSystemThree
{
public:
	void MethodThree(){ std::cout << "SubSystem 3" << std::endl; }
};


// Facade
class Facade
{
public:
	Facade()
	{
		pOne = new SubSystemOne();
		pTwo = new SubSystemTwo();
		pThree = new SubSystemThree();
	}

	void MethodA()
	{
		std::cout << "Facade::MethodA" << std::endl;
		pOne->MethodOne();
		pTwo->MethodTwo();
	}

	void MethodB()
	{
		std::cout << "Facade::MethodB" << std::endl;
		pTwo->MethodTwo();
		pThree->MethodThree();
	}

private:
	SubSystemOne *pOne;
	SubSystemTwo *pTwo;
	SubSystemThree *pThree;
};

int main()
{
	Facade *pFacade = new Facade();

	pFacade->MethodA();
	pFacade->MethodB();

	return 0;
}
 

Tags:设计模式 外观 模式

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接