适配器模式(Adapter)

意图
将一个类的接口转换成客户希望的另一个接口。
使得原本由于接口不兼容而不能一起工作的那些类可以一起工作

类图
对象适配器
适配器模式(Adapter)_第1张图片

类适配器
适配器模式(Adapter)_第2张图片

参与者
Target: 定义Client使用的特定领域的接口
Client :与符合Target接口的对象协作
Adaptee:定义一个已存在的需要适配的接口
Adapter: 对Adaptee的接口与Target接口进行适配

代码
对象适配器
# include  <iostream >
using  namespace std;
//提供客户所期待的的接口
class Target
{
public :
     virtual  void Request() = 0;
};

//需要适配的类
class Adaptee
{
public :
     void SpecificRequest()
    {
        cout << "call Adaptee function" <<endl;
    }
};

//在内部通过调用Adaptee对象接口
//把源接口转换成目标接口
class Adapter : public Target
{
private :
    Adaptee adaptee;
public :
     void Request()
    {
        adaptee.SpecificRequest();
    }
};

int main()
{
     Target  *pTar  =  new Adapter();
     pTar - >Request();
}

你可能感兴趣的:(适配器模式(Adapter))