Skip to content

Commit 6f65ffa

Browse files
add simple explanation about creational
1 parent f3fe7e4 commit 6f65ffa

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Creational/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Creational
22

3+
In software engineering, creational design patterns are design patterns that
4+
deal with object creation mechanisms, trying to create objects in a manner
5+
suitable to the situation. The basic form of object creation could result in
6+
design problems or added complexity to the design. Creational design patterns
7+
solve this problem by somehow controlling this object creation.
8+
39
* [AbstractFactory](AbstractFactory) [:notebook:](http://en.wikipedia.org/wiki/Abstract_factory_pattern)
410
* [Builder](Builder) [:notebook:](http://en.wikipedia.org/wiki/Builder_pattern)
511
* [FactoryMethod](FactoryMethod) [:notebook:](http://en.wikipedia.org/wiki/Factory_method_pattern)

0 commit comments

Comments
 (0)