An adapter pattern converts the interface of a class into another interface the clients expect. Adapter lets classes work together that couldn't otherwise because of incompatible interfaces.app
It comprises three components:this
Target
: This is the interface with which the client interacts.Adaptee
: This is the interface the client wants to interact with, but can’t interact without the help of the Adapter
.Adapter
: This is derived from Target and contains the object of Adaptee
.When I shifted from India to London, I took along many of my electrical appliances with me. But there was one problem using them, the pin shape. In India, all the appliances have round pins whereas in London they are flat pinned. Now how do we overcome this problem as I was not ready to buy new plugs. So the adapter came to my rescue (and saved lots of pounds!!!)spa
I got hold of an adapter plug which has round pins as input and the other end with flat pins (India to UK adapters). This is how I used them with the adapter pattern.code
Class description:component
<AbstractPlug>
: Abstract Target class<Plug>
: Concrete Target class<AbstractSwitchBoard>
: Abstract Adaptee class<SwitchBoard>
: Concrete Adaptee class<Adapter>
: Adapter class, our saviour// Abstract Target class AbstractPlug { public: void virtual RoundPin(){} void virtual PinCount(){} }; // Concrete Target class Plug : public AbstractPlug { public: void RoundPin() { cout << " I am Round Pin" << endl; } void PinCount() { cout << " I have two pins" << endl; } }; // Abstract Adaptee class AbstractSwitchBoard { public: void virtual FlatPin() {} void virtual PinCount() {} }; // Concrete Adaptee class SwitchBoard : public AbstractSwitchBoard { public: void FlatPin() { cout << " Flat Pin" << endl; } void PinCount() { cout << " I have three pins" << endl; } }; // Adapter class Adapter : public AbstractPlug { public: AbstractSwitchBoard *T; Adapter(AbstractSwitchBoard *TT) { T = TT; } void RoundPin() { T->FlatPin(); } void PinCount() { T->PinCount(); } }; // Client code void _tmain(int argc, _TCHAR* argv[]) { SwitchBoard *mySwitchBoard = new SwitchBoard; // Adaptee // Target = Adapter(Adaptee) AbstractPlug *adapter = new Adapter(mySwitchBoard); adapter->RoundPin(); adapter->PinCount(); }
reference: http://www.codeproject.com/Tips/595716/Adapter-Design-Pattern-in-Cplusplusblog