0 votes
in Design Patterns by
What is the benefit of using prototype design pattern over creating an instance using the new keyword?

1 Answer

0 votes
by
Sometimes, object creation is heavyweight and requires a lot of resources, creating a new instance will impact the performance. In such cases, a prototype design pattern is used which refers to creating duplicate objects. In prototype design pattern, if a similar object is already present then cloning is done keeping performance in mind.

Related questions

+1 vote
asked Jan 27, 2020 in JAVA by rahuljain1
0 votes
asked Jul 24, 2023 in Design Patterns by SakshiSharma
...