Please enable JavaScript.
Coggle requires JavaScript to display documents.
Types of design Patterns - Coggle Diagram
Types of design Patterns
Creational Patterns
-
Singleton
ensures only one object of particular class created. the singleton class refer to same underlying instance
-
-
-
-
Behavioural Patterns
Memento
capture the current state of an object and store it in such a manner that it can be restored at a later time
-
-
-
-
-
Strategy
create an interchangeable family of algorithms from which the required process is chosen at run-time.
Command
used to express a request, including the call to be made and all of its required parameters, in a command object
Template Method
define the basic steps of an algorithm and allow the implementation of the individual steps to be changed.
-
-