Gaëtan TEMATE
Lead Tech Java | AWS | React
© 2025 All rights reserved.
Category Archives: Design
Design Pattern Decorator, When to use it
The Decorator Design Pattern is a structural pattern that enables you to attach new behaviors or responsibilities to objects without modifying their existing structure. It’s an alternative to subclassing, where you would typically inherit and extend a class to add new functionality. The Decorator Pattern is particularly useful when there are several optional behaviors that…