The Bridge Design Pattern

The Bridge Pattern is a structural design pattern from the Gang of Four that might be little harder to understand at first due to its definition – “decouple an abstraction from its implementation so that the two can vary independently.”  This definition sounds more complicated than it actually is.   Intent and Structure As said in … Read moreThe Bridge Design Pattern

The Factory Design Pattern

The Factory Pattern is another very common pattern you will see in programming.  It is part of the Creational category of design patterns described from the Gang of Four (for more info, see my first article in this series).  Intent & Structure The Factory pattern gives you the ability to separate creational logic for an … Read moreThe Factory Design Pattern