సృజనాత్మక నమూనాలు (Creational patterns) వస్తువు సృష్టి — వస్తువులు ఎలా సృష్టించబడతాయి, సౌకర్యవంతంగా మరియు వాటిని ఉపయోగించే కోడ్ నుండి వేరుచేయబడతాయి. అవి Singleton, Factory, Builder, Prototype, మరియు Abstract Factory లను కలిగి ఉన్నాయి.
సృజనాత్మక నమూనాలు ఏమిని సంబోధించాయి
CREATIONAL patterns abstract and control HOW objects are CREATED:
→ instead of directly calling constructors everywhere (rigid, coupled), creational
patterns make object creation flexible, decoupled, and manageable
→ they help create objects in a way suited to the situation, decoupled from concrete classes
