Concept
Adapter Pattern 0
The Adapter Pattern is a structural design pattern that allows incompatible interfaces to work together by acting as a bridge between them. It enables a class to interact with an interface it doesn't naturally support by wrapping the class with an adapter that translates the interface calls into compatible ones.
Relevant Degrees