+1 vote
in Design Patterns by
What is main benefit of using factory pattern ? Where do you use it?

1 Answer

0 votes
by

Factory pattern’s main benefit is increased level of encapsulation while creating objects. If you use Factory to create object you can later replace original implementation of Products or classes with more advanced and high performance implementation without any change on client layer. See my post on Factory pattern for more detailed explanation and benefits.

Related questions

0 votes
asked Aug 12, 2020 in Design Patterns by RShastri
0 votes
asked Oct 17, 2019 in Design Patterns by Robin
...