Reducing Object Construction Complexity:?
- If an object is very complex and its construction requires a lot of steps, the
Prototype Pattern allows you to avoid duplicating these steps by cloning an
existing object and modifying only the necessary parts.
Considerations: