Bridge Pattern
The Bridge Pattern is a structural design pattern that decouples an abstraction from its implementation so the two can vary and evolve independently, by giving the abstraction a reference to a separate implementation interface rather than inheriting from a concrete implementation.
4 resources across 2 libraries
Glossary Terms(2)
Bridge Pattern
The Bridge Pattern is a structural design pattern that decouples an abstraction from its implementation so the two can vary and evolve independently, by giving…
Facade Pattern
The Facade Pattern is a structural design pattern that provides a single, simplified interface to a larger, more complex subsystem of classes, making that subs…
Interview Questions(2)
What is the Bridge Pattern?
The Bridge pattern is a structural design pattern that decouples an abstraction from its implementation by putting them in two separate class hierarchies conne…
Adapter vs Bridge Pattern
The Adapter pattern converts an existing incompatible interface into one a client expects, applied after the fact to make unrelated classes work together, whil…