Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 400 Bytes

File metadata and controls

5 lines (3 loc) · 400 Bytes

Bridge Pattern

Bridge is a structural design pattern that lets you split a large class or a set of closely related classes into two separate hierarchies (abstraction and implementation) which can be developed independently of each other. source

In this example House is the abstraction, and Garden the implementation.