Decorator Pattern
This lesson will introduce the decorator pattern in detail with the aid of a coding example.
We'll cover the following...
What is the decorator pattern?
The decorator pattern focuses on adding properties, functionalities, and behavior to existing classes dynamically. The additional decoration functionalities aren’t considered essential enough to be a part of the original class definition as they can cause clutter. Hence, the ...