Skip to main content

4 docs tagged with "creational pattern"

View all tags

🏭 Abstract Factory

You ever showered, and were lost in thought about how to create families of related objects? Fear not, Abstract Factories are here to help.

🏭 Factory Method

Factory Method is a customized assembly line for objects, usually referred to as products. It is a creational design pattern pattern which provides a unified interface for creating objects in a master class. Subclasses can define the types of objects that are being created.

👑 Singleton

Singleton allows you to create a class that only has one instance, while offering a single, global access point to said instance.

👷 Builder

Builder Pattern is a creational pattern to create complex objects in a multi-step process, using a construction class.