#design-patterns
Read more stories on Hashnode
Articles with this tag
Pattern It's one of the structural design patterns. This pattern helps to reduce the memory usage by sharing data among multiple objects. This is a...
Introduction Bridge pattern decouples an abstarction from its implementation so that the two can vary independently. UML Diagram In this UML...
Vending Machine Design ยท Introduction This pattern is primarily used for vending machines and in specific areas where a particular state has a defined...
The chain of responsibility is similar to a linked list. Here the node is the class that has the knowledge of the next class and the value is the...
Factory manufactures objects In this pattern, there is a factory and other objects. The factory provides you with the object that you require. Note:...
The Decorator design pattern can be beneficial when the features are mutually independent, and applying each feature to an object results in the same...