Working with Creational Design Patterns
In recent decades, the IT community has experienced a dramatic shift from previously isolated systems to distributed or hybrid solutions. These approaches bring to light new possibilities for software development.
Distribution solutions may appear to meet the migration needs of legacy systems, but the reality may prove otherwise. The required refactoring can cause additional problems due to the division of responsibilities or refactoring of tightly coupled logic and business rules and many unknown, hidden logics that are discovered too late to react to.
In this chapter, we will explore creational design patterns. These patterns play a vital role in the software composition. They are very useful for achieving maintainability or readability of the code base. Creational design patterns attempt to follow all the previously noted principles or the don’t repeat yourself (DRY) approach. Let’s dive deeper into specific patterns in...