abstract factory
-
Abstract factoryModeling/DesignPattern 2019. 8. 23. 06:38
1. Overview The abstract factory pattern provides a way to encapsulate a group of individual factories that have a common theme without specifying their concrete classes. In normal usage, the client software creates a concrete implementation of the abstract factory and then uses the generic interface of the factory to create the concrete objects that are part of the theme. The client doesn't kno..