Relative Content

Tag Archive for javadesign-patternsfactory-pattern

Not able to wrap my head around the factory method design pattern definition

Definition
A Factory Pattern or Factory Method Pattern says that just define an interface or abstract class for creating an object but let the subclasses decide which class to instantiate. In other words, subclasses are responsible to create the instance of the class.The Factory Method Pattern is also known as Virtual Constructor.