Creational Patterns: Object Creation Mechanisms
Creational patterns deal with object creation mechanisms, trying to create objects in a manner suitable to the situation.
The Problem They Solve
Basic object creation can lead to design problems or complexity. Creational patterns solve this by controlling the creation process.
Common Creational Patterns
1. Singleton Pattern
Ensures a class has only one instance and provides a global access point to it.