Abstract Factory Pattern
Abstract factory pattern is a creational pattern. It provides an interface using which a client can instantiate a group of related Objects. This tutorial explains the Abstract factory pattern using a Car manufacturing algorithm. Example We design a framework that can build cars. We build two types of cars, a Mazda and a Ferrari. The … Read more