Factory Quote by Anonymous
““factory class that will encapsulate the creation of all the standard””
About This Quote
A brief technical note suggesting a class that centralizes creation of standard components.
In simple terms: Encapsulate creation of standard items.
Use a factory class for standard objects.
Themes
Mood
Type
When to use this quote
- code organization
- component creation
- system design
Key Concepts
Questions to Reflect On
- Is a factory needed for this case?
- How does it affect maintainability?
May add complexity if overused.