☕ Template Method
Template Method is a Design Pattern that helps you create a structure for an algorithm in one main abstract class. You can then make changes to specific steps of the algorithm in other classes, without breaking the main structure.
Template Method is a Design Pattern that helps you create a structure for an algorithm in one main abstract class. You can then make changes to specific steps of the algorithm in other classes, without breaking the main structure.
Strategy Pattern is a design pattern that separates algorithms or methods from an object, allowing them to be swapped in and out at runtime depending on the situation. It provides flexibility and modularity without having to modify the main object’s codebase.
The Command pattern creates an object that contains all the details of a request. This makes it easy to pass requests as arguments, execute actions, and also supports undoable operations.
Visitor pattern allows you to seperate algorithmns from the objects on which they operate.