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.
- Host: GitHub
- URL: https://github.com/therezacuet/abstract-factory-design-pattern
- Owner: therezacuet
- Created: 2019-05-23T08:15:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-23T08:56:48.000Z (over 6 years ago)
- Last Synced: 2025-01-22T21:14:59.563Z (9 months ago)
- Language: Java
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.