Student Reviews
( 5 Of 5 )
1 review
Video of Prototype Design Pattern Tutorial in Design Patterns course by Derek Banas channel, video No. 9 free certified online
Get the Code: http://goo.gl/V2kUm
Best Design Patterns Book : http://goo.gl/W0wyie
Welcome to my Prototype Design Pattern Tutorial. The Prototype design pattern is used for creating new objects (instances) by cloning (copying) other objects.
It allows for the adding of any subclass instance of a known super class at run time. It is used when there are numerous potential classes that you want to only use if needed at runtime. The major benefit of using the Prototype pattern is that it reduces the need for creating potentially unneeded subclasses.