0 votes
in Design Patterns by

What is Prototype pattern?

1 Answer

0 votes
by

Prototype pattern refers to creating duplicate object while keeping performance in mind. This pattern involves implementing a prototype interface which tells to create a clone of the current object.

...