2015-05-31 13:25:04 +02:00
|
|
|
`Creational`__
|
|
|
|
==============
|
2015-04-02 00:03:33 +02:00
|
|
|
|
|
|
|
In software engineering, creational design patterns are design patterns
|
|
|
|
that deal with object creation mechanisms, trying to create objects in a
|
|
|
|
manner suitable to the situation. The basic form of object creation
|
|
|
|
could result in design problems or added complexity to the design.
|
|
|
|
Creational design patterns solve this problem by somehow controlling
|
|
|
|
this object creation.
|
|
|
|
|
2015-04-02 00:16:16 +02:00
|
|
|
.. toctree::
|
|
|
|
:titlesonly:
|
2015-04-02 00:03:33 +02:00
|
|
|
|
2015-04-05 06:05:24 +02:00
|
|
|
AbstractFactory/README
|
|
|
|
Builder/README
|
|
|
|
FactoryMethod/README
|
|
|
|
Multiton/README
|
|
|
|
Pool/README
|
|
|
|
Prototype/README
|
|
|
|
SimpleFactory/README
|
|
|
|
Singleton/README
|
2015-04-07 22:00:12 +02:00
|
|
|
StaticFactory/README
|
2015-05-31 13:25:04 +02:00
|
|
|
|
|
|
|
.. __: http://en.wikipedia.org/wiki/Creational_pattern
|