Please enable JavaScript.
Coggle requires JavaScript to display documents.
GoF - Coggle Diagram
GoF
Creational
Factory Method
to deal with the problem of creating objects without having to specify the exact class of the object that will be created.
-
Definition
"Define an interface for creating an object, but let subclasses decide which class to instantiate. The Factory method lets a class defer instantiation it uses to subclasses." (Gang Of Four)
Builder
-
Overview
-
A class (the same construction process) can delegate to different Builder objects to create different representations of a complex object.
Definition
A class (the same construction process) can delegate to different Builder objects to create different representations of a complex object.
-
-
-
-
-