The Bridge Design Pattern with Python
Introduction The Bridge Design Pattern is a Structural Design Pattern, which splits the abstraction from the implementation. In this article, we’ll be covering the motivation and implementation of the Bridge Design Pattern in Python. Design Patterns refer to a set of standardized practices or solutions to common architectural problems in software engineering. Motivation Behind the Bridge Design Pattern The Bridge Pattern prevents what’s called the cartesian product complexity explosion. The problem will be obvious going through an example. Suppose you’re […]
Read more