Adapter Pattern | C++ Design Patterns
Last Updated :
19 Jun, 2024
Adapter Pattern is a structural design pattern used to make two incompatible interfaces work together. It acts as a bridge between two incompatible interfaces, allowing them to collaborate without modifying their source code. This pattern is particularly useful when integrating legacy code or third-party libraries into your application.

Important Topics for the Adapter Pattern in C++ Design Patterns
Adapter Pattern example in C++ Design Patterns
Problem Statement
Suppose you have a legacy printer class that only understands commands in uppercase, and a modern computer class that sends commands in lowercase. You need to make the modern computer work with the legacy printer without modifying the existing printer class.
Implementation of the Adapter Pattern in C++ Design Patterns:
It defines three classes:
LegacyPrinter
is the legacy component (Adaptee). It has a method printInUppercase
that can print text in uppercase.ModernComputer
is the modern client class. It has a method sendCommand
to send commands, but it sends them in lowercase.PrinterAdapter
is the adapter class. It encapsulates the LegacyPrinter
and adapts it to work with the ModernComputer
.
LegacyPrinter Class
The LegacyPrinter
class has a single method, printInUppercase
, which takes a string as an argument and prints it in uppercase.
C++
/ Legacy Printer (Adaptee)
class LegacyPrinter {
public:
void printInUppercase(const std::string& text) {
std::cout << "Printing: " << text << std::endl;
}
};
ModernComputer Class
The ModernComputer
class has a single method, sendCommand
, which also takes a string as an argument but sends it as a command (in lowercase).
C++
// Modern Computer (Client)
class ModernComputer {
public:
void sendCommand(const std::string& command) {
std::cout << "Sending command: " << command << std::endl;
}
};
PrinterAdapter Class
The PrinterAdapter
class is the adapter. It contains an instance of LegacyPrinter
. It has a method sendCommand
that takes a lowercase command as an argument.
C++
// Adapter class to make the LegacyPrinter compatible with ModernComputer
class PrinterAdapter {
private:
LegacyPrinter legacyPrinter;
public:
void sendCommand(const std::string& command) {
// Convert the command to uppercase and pass it to the LegacyPrinter
std::string uppercaseCommand = command;
for (char& c : uppercaseCommand) {
c = std::toupper(c);
}
legacyPrinter.printInUppercase(uppercaseCommand);
}
};
Below is the explanation of the above code:
- It creates a copy of the lowercase command as
uppercaseCommand
. - It iterates over each character in
uppercaseCommand
and converts it to uppercase using std::toupper
. - It then calls the
printInUppercase
method of the encapsulated LegacyPrinter
with the uppercase
Command
.
Essentially, the adapter class converts the lowercase command from the ModernComputer
into uppercase and delegates it to the LegacyPrinter
.
Main Function:
In the main
function, the code demonstrates how the ModernComputer
and the PrinterAdapter
work together:
C++
int main() {
ModernComputer computer;
PrinterAdapter adapter;
computer.sendCommand("Print this in lowercase");
adapter.sendCommand("Print this in lowercase (adapted)");
return 0;
}
Below is the explanation of the above code:
- An instance of
ModernComputer
named computer
is created. - An instance of
PrinterAdapter
named adapter
is created. - The
computer
sends a command in lowercase: "Print this in lowercase."
The adapter
receives the command, adapts it to uppercase, and sends it to the LegacyPrinter
.
Below is the complete combined code of the above example:
C++
#include <iostream>
#include <string>
// Legacy Printer (Adaptee)
class LegacyPrinter {
public:
void printInUppercase(const std::string& text)
{
std::cout << "Printing: " << text << std::endl;
}
};
// Modern Computer (Client)
class ModernComputer {
public:
void sendCommand(const std::string& command)
{
std::cout << "Sending command: " << command
<< std::endl;
}
};
// Adapter class to make the LegacyPrinter compatible with
// ModernComputer
class PrinterAdapter {
private:
LegacyPrinter legacyPrinter;
public:
void sendCommand(const std::string& command)
{
// Convert the command to uppercase and pass it to
// the LegacyPrinter
std::string uppercaseCommand = command;
for (char& c : uppercaseCommand) {
c = std::toupper(c);
}
legacyPrinter.printInUppercase(uppercaseCommand);
}
};
int main()
{
ModernComputer computer;
PrinterAdapter adapter;
computer.sendCommand("Print this in lowercase");
adapter.sendCommand(
"Print this in lowercase (adapted)");
return 0;
}
OutputSending command: Print this in lowercase
Printing: PRINT THIS IN LOWERCASE (ADAPTED)
Key components of the Adapter pattern in C++ Design Patterns
- Target Interface: This is the interface that your client code expects. It defines the operations or methods that the client code should use.
- Adaptee: This is the existing class or component with an interface that's incompatible with the target interface. The Adaptee is the class you want to adapt to make it compatible with the client's expectations.
- Adapter: The Adapter class is responsible for adapting the Adaptee's interface to the Target interface. It acts as a wrapper around the Adaptee, forwarding calls to the Adaptee's methods but in a way that is compatible with the client's expectations.
Diagrammatic Representation of the Adapter Pattern in C++ Design Patterns
Here is the UML class diagram for the Adapter Pattern:
UML DiagramIn this diagram:
- ModernComputer is the client that sends lowercase commands.
- PrinterAdapter is the adapter class that bridges the gap between the client and the legacy printer.
- LegacyPrinter is the legacy class that can only print in uppercase.
- The ModernComputer communicates with the PrinterAdapter, which, in turn, interacts with the LegacyPrinter by adapting the lowercase commands to uppercase before printing.
Uses of the Adapter Method in C++ Design Patterns:
- Legacy Code Integration: When you need to integrate new code with existing legacy code that has an incompatible interface.
- Library Compatibility: When you want to use a third-party library with a different interface in your project.
- Interface Standardization: To ensure that multiple classes with different interfaces conform to a common interface, making it easier to work with them.
- Testing: In unit testing, you can create adapter classes to mock or stub external dependencies with different interfaces, making testing easier.
Advantages of the Adapter Pattern in C++ Design Patterns
- Compatibility: Allows integration of new and old systems or components with different interfaces.
- Reusability: Existing classes can be reused without modification, reducing the risk of introducing bugs.
- Flexibility: New adapters can be easily added to adapt various classes to a common interface.
- Maintainability: Isolates changes to the adapter, making it easier to maintain and update systems.
Disadvantages of the Adapter Pattern in C++ Design Patterns
- Complexity: Introducing adapters can add complexity to the codebase, especially when multiple adapters are used.
- Performance Overhead: Adapters may introduce some performance overhead due to the additional method calls and indirection.
- Potential for Design Confusion: Overuse of the Adapter Pattern can make the codebase less intuitive and harder to understand.
- Not Always Suitable: Some classes may be too different to adapt easily, making the Adapter Pattern impractical in certain situations.
The Adapter Pattern is a valuable tool for integrating and reusing code with different interfaces, but it should be used judiciously to avoid unnecessary complexity and confusion in the design.
Similar Reads
Modern C++ Design Patterns Tutorial Design patterns in C++ help developers create maintainable, flexible, and understandable code. They encapsulate the expertise and experience of seasoned software architects and developers, making it easier for newer programmers to follow established best practices. What are C++ Design Patterns?A des
7 min read
Creational Software Design Patterns in C++
Factory Method Pattern | C++ Design Patterns Factory Method Pattern provides an interface for creating objects but leaves the actual object instantiation to derived classes. This allows for flexibility in object creation and promotes loose coupling between the client code and the concrete products.Factory Method Pattern | C++ Design PatternsTa
8 min read
Abstract Factory Pattern | C++ Design Patterns Abstract Factory Pattern is a creational design pattern used in object-oriented programming. It provides an interface for creating families of related or dependent objects without specifying their concrete classes. This pattern is a way to encapsulate the creation of objects and ensure that they are
6 min read
Builder Pattern | C++ Design Patterns The builder pattern is defined as a creational design pattern that separates the construction of a complex object from its representation, allowing us to create different representations of an object using the same construction process. It's beneficial when an object has many optional properties or
6 min read
Prototype Pattern | C++ Design Patterns When designing software, it's crucial to make it efficient, easy to reuse, and simple to maintain. One way to achieve these goals is by using design patterns, and one such pattern is the Prototype Pattern. In this article, we'll explore the Prototype Design Pattern in the context of C++. Important T
5 min read
Singleton Pattern | C++ Design Patterns A singleton pattern is a design pattern that ensures that only one instance of a class can exist in the entire program. This means that if you try to create another instance of the class, it will return the same instance that was created earlier. The Singleton pattern is useful when we need to have
11 min read
Structural Software Design Patterns in C++
Adapter Pattern | C++ Design Patterns Adapter Pattern is a structural design pattern used to make two incompatible interfaces work together. It acts as a bridge between two incompatible interfaces, allowing them to collaborate without modifying their source code. This pattern is particularly useful when integrating legacy code or third-
6 min read
Bridge Method | C++ Design Patterns Bridge Pattern is basically a structural design pattern in software engineering or in C++ programming that is used to separate an object's abstraction from its implementation. It is part of the Gang of Four (GoF) design patterns and is particularly useful when we need to avoid a permanent binding be
9 min read