设计模式—桥接模式的C++实现
2018-06-17 20:25:36来源:未知 阅读 ()
这是Bwar在2009年写的设计模式C++实现,代码均可编译可运行,一直存在自己的电脑里,曾经在团队技术分享中分享过,现搬到线上来。
1. 装饰模式简述
1.1 目的
将抽象部分与它的实现部分分离,使它们可以独立地变化。
1.2 适用性
(1) 不希望抽象部分与实现部分之间有一个固定的绑定关系 ,在运行时刻实现部分可以被选择或切换。
(2) 类的抽象以及它的实现都应该可以通过生成子类的方法加以扩充。
(3) 对一个抽象的实现部分的修改对客户不产生影响,即客户代码不需要重新编译。
(4) 对客户完全隐藏抽象的实现部分。
2. 装饰模式结构图
- Abstraction:定义抽象类的接口;维护一个只想Implementor类型对象的指针。
- RefinedAbstraction:扩充由Abstraction定义的接口。
- Implementor:定义实现类的接口,该接口不一定要与Abstraction的接口完全一致;事实上这两个接口可以完全不同。
- ConcreteImplementor:实现Implementor接口并定义它的具体实现。
3. 桥接模式C++实现示例
手机与手机软件的实现。
代码实现:
Mobile.hpp:
#ifndef Mobile_HPP_ #define Mobile_HPP_ #include "MobileSoft.hpp" class CMobile { public: CMobile(){}; virtual ~CMobile(){} virtual int Run() = 0; int SetMobileSoft(CMobileSoft* pSoft) { m_pMyMobileSoft = pSoft; return 0; } //int Start(); //int Shutdown(); protected: CMobileSoft* GetMobileSoft() { return m_pMyMobileSoft; } private: CMobileSoft* m_pMyMobileSoft; unsigned int m_uiShape; unsigned int m_uiColour; }; #endif /* Mobile_HPP_ */
Nokia.hpp:
#ifndef NOKIA_HPP_ #define NOKIA_HPP_ #include "Mobile.hpp" class CNokia : public CMobile { public: CNokia(){}; virtual ~CNokia(){}; virtual int Run() { cout << "Nokia "; GetMobileSoft()->ImpRun(); return 0; } }; #endif /* NOKIA_HPP_ */
Moto.hpp:
#ifndef MOTO_HPP_ #define MOTO_HPP_ #include "Mobile.hpp" class CMoto : public CMobile { public: CMoto(){}; virtual ~CMoto(){}; virtual int Run() { cout << "Moto "; GetMobileSoft()->ImpRun(); return 0; } }; #endif /* MOTO_HPP_ */
MobileSoft.hpp:
#ifndef MobileSOFT_HPP_ #define MobileSOFT_HPP_ #include <cstdio> #include <iostream> using namespace std; class CMobileSoft { public: CMobileSoft(){}; virtual ~CMobileSoft(){}; virtual int ImpRun() = 0; }; #endif /* MobileSOFT_HPP_ */
MobileAddressList.hpp:
#ifndef MobileADDRESSLIST_HPP_ #define MobileADDRESSLIST_HPP_ #include "MobileSoft.hpp" class CMobileAddressList : public CMobileSoft { public: CMobileAddressList(){}; virtual ~CMobileAddressList(){}; virtual int ImpRun() { cout << "Mobile address list." << endl; return 0; } }; #endif /* MobileADDRESSLIST_HPP_ */
MobileGame.hpp:
#ifndef MobileGAME_HPP_ #define MobileGAME_HPP_ #include "MobileSoft.hpp" class CMobileGame : public CMobileSoft { public: CMobileGame(){}; virtual ~CMobileGame(){}; virtual int ImpRun() { cout << "Mobile game." << endl; return 0; } }; #endif /* MobileGAME_HPP_ */
BridgeMain.cpp:
#include <ctime> #include <iostream> #include "Mobile.hpp" #include "Nokia.hpp" #include "Moto.hpp" #include "MobileSoft.hpp" #include "MobileGame.hpp" #include "MobileAddressList.hpp" using namespace std; int main() { CMobile* pMyMobile; CMobileSoft* pMySoft; pMyMobile = new CNokia; pMySoft = new CMobileGame; pMyMobile->SetMobileSoft(pMySoft); pMyMobile->Run(); delete pMyMobile; delete pMySoft; return 0; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- C++之观察者模式 2020-03-19
- c++之模板模式 2020-03-12
- C++之策略模式 2020-03-12
- CPP 设计模式学习 2020-01-02
- 《大话设计模式》之简单工厂模式 2019-11-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash