Student Reviews
( 5 Of 5 )
1 review
Video of Decorator Design Pattern in Design Patterns course by Derek Banas channel, video No. 11 free certified online
Get the Cheat Sheet: http://goo.gl/MzW0g
Best Design Patterns Book : http://goo.gl/W0wyie
Welcome to my Decorator Design Pattern Tutorial. The Decorator allows you to modify an object dynamically. You would use it when you want the capabilities of inheritance with subclasses, but you need to add functionality at run time.
It is more flexible than inheritance. The Decorator Design Pattern simplifies code because you add functionality using many simple classes. Also, rather than rewrite old code you can extend it with new code and that is always good.