适配器模式(Adapter):
将一个类的接口转换成客户希望的另外一个接口。Adapter模式使得原本由于接口不兼容而不能一起工作的那些类可以一起工作。简单地说,就是需要的东西
就在面前,但却不能使用,而短时间又无法改造它,于是就想办法适配它。适配这个词可以这样理解。比如,有些国家用110V电压,而我们国家用的是
220V,但我们的电器,比如笔记本电脑是不能什么电压都能用的,但国家不同,电压可能不相同也是事实,于是就用一个电源适配器,只要是电,不管多少伏,
都能把电源变成需要的电压,这就是电源适配器的作用。适配器的意思就是使得一个东西适合另一个东西的东西。
在软件开发中,系统的数据和行为都正确,但接口不符合,我们应该考虑用适配器,目的是使控制范围之外的一个原有对象与某个接口匹配。适配器模式主要应用于希望复用一些现存的类,但是接口又与复用环境要求不一致的情况。
何时使用适配器模式:
使用一个已存在的类,但如果它的接口,也就是它的方法和你的要求不相同时,就应该考虑用适配器模式。也就是两个类所做的事情相同或相似,但是具有不同的接
口时要使用它。而且由于类都共享同一个接口,使得客户端代码可以统一调用同一接口。这样应该可以更简单、更直接、更紧凑。
适配器模式要在双方都不太容易修改的时候再使用适配器模式适配。
赏图:
实际应用
工程结构
(1)球员类(Target) Player.h
(2)外籍球员类(Adaptee) ForeignCenter.h
(3)翻译类(Adapter) Translator.h
(4)客户端类(Client) AdapterApp.cpp
(1)球员类(Target) Player.h
- #ifndef _PLAYER_H_
- #define _PLAYER_H_
-
- #include
- #include
- using namespace std;
-
- class Player
- {
- public:
- Player(const string& strName)
- {
- m_strName = strName;
- }
-
- virtual void Attack(void) = 0;
- virtual void Defense(void) = 0;
- protected:
- string m_strName;
- };
-
-
- class Forwards : public Player
- {
- public:
- Forwards(const string& strName)
- : Player(strName)
- , m_strName(strName){}
-
- void Attack(void)
- {
- cout << "Forward:" <" attack" << endl;
- }
-
- void Defense(void)
- {
- cout << "Forward:" <" defense" << endl;
- }
-
- private:
- string m_strName;
- };
-
-
- class Center : public Player
- {
- public:
- Center(const string& strName)
- : Player(strName)
- , m_strName(strName){}
-
- void Attack(void)
- {
- cout << "Center:" <" attack" << endl;
- }
-
- void Defense(void)
- {
- cout << "Center:" <" defense" << endl;
- }
-
- private:
- string m_strName;
- };
-
-
- class Guards : public Player
- {
- public:
- Guards(const string& strName)
- : Player(strName)
- , m_strName(strName){}
-
- void Attack(void)
- {
- cout << "Guard:" <" attack" << endl;
- }
-
- void Defense(void)
- {
- cout << "Guard:" <" defense" << endl;
- }
-
- private:
- string m_strName;
- };
-
- #endif// _PLAYER_H_
阅读(953) | 评论(0) | 转发(0) |