Bridge Pattern
This lesson discusses the decorator pattern in detail with the aid of a coding example.
We'll cover the following...
What is the bridge pattern?
The bridge pattern allows separate components with separate interfaces to work together. It keeps an object’s interface separate from its implementation, allowing the two to vary independently.
An example is controlling an air conditioner with a ...