An open API service indexing awesome lists of open source software.

https://github.com/therezacuet/abstract-factory-design-pattern

Abstract Factory patterns work around a super-factory which creates other factories. This factory is also called as factory of factories. This type of design pattern comes under creational pattern as this pattern provides one of the best ways to create an object.
https://github.com/therezacuet/abstract-factory-design-pattern

Last synced: 7 months ago
JSON representation

Abstract Factory patterns work around a super-factory which creates other factories. This factory is also called as factory of factories. This type of design pattern comes under creational pattern as this pattern provides one of the best ways to create an object.

Awesome Lists containing this project

README

          

# Abstract-Factory-Design-Pattern

This is another design patter for the solution of question (a)

Abstract Factory patterns work around a super-factory which creates other factories. This factory is also called as factory of factories. This type of design pattern comes under creational pattern as this pattern provides one of the best ways to create an object.

In Abstract Factory pattern an interface is responsible for creating a factory of related objects without explicitly specifying their classes. Each generated factory can give the objects as per the Factory pattern.