Skip to content

Latest commit

 

History

History

factory-method

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Factory Method

Official description of the Factory Method pattern

Define an interface for creating an object, but let subclasses decide which class to instantiate.
Factory Method lets a class defer instantiation to subclasses.


Relies on inheritance. This allows classes to defer instantiation to subclasses.\