layout: post title: Learn about Factory Method Design Pattern! categories:
I would like to start with a somewhat formal description of what a factory method
design pattern is.
the factory method pattern is a creational pattern that uses factory methods to deal with the problem of creating objects
without having to specify the exact class of the object that will be created. This is done by creating objects by calling a factory method—either specified in an interface and implemented by child classes, or implemented in a base class and optionally overridden by derived classes—rather than by calling a constructor
.
Read the above paragraph twice or thrice slowly until it starts to make some sense.
Example