» The Abstract Factory pattern supports the creation of products that exist in families and are designed to be produced together, while keeping their details independent from the clients; » The Abstract Factory pattern hides the factory name from the client, which makes it possible to swap the factory, while still providing the functionality according to an agreed interface; » A limitation of the Abstract Factory pattern is that it is not easy to add new kinds of products. The number and names of the abstract products are coded directly into the abstract factory therefore, adding a new product requires the factory interface and all its sub-classed concrete factories to be updated. Even the client needs to change to take advantage of the new addition.
Use When:
» A system should be independent of how its products are created, composed, and represented; » A system can be configured with one of multiple families of products; » The constraint requiring products from the same factory to be used together must be enforced; » The emphasis is on revealing interfaces, not implementations.
//Define the Pattern Interface and Handler Objects
//Define the IAbstractFactory interface to be used as the "blueprint" for the factory application classes. public interfaceIAbstractFactory { IAbstractBag CreateBag(); IAbstractShoes CreateShoes(); IAbstractBelts CreateBelts(); }
//The GucciFactory class (object) represents a factory class that instantiates a particular set of product classes. These product classes are related to each other. public classGucciFactory : IAbstractFactory { publicIAbstractBag CreateBag() { return newGucciBag(); }
//The PoochyFactory class (object) represents a factory class that instantiates a particular set of product classes. These product classes are related to each other. public classPoochyFactory : IAbstractFactory { publicIAbstractBag CreateBag() { return newPoochyBag(); }
//Define the Pattern Interface and Handler Objects.
//Define the IAbstractFactory interface to be used as the "blueprint" for the factory application classes. public interfaceIAbstractFactory { IAbstractBag CreateBag(); IAbstractShoes CreateShoes(); IAbstractBelts CreateBelts(); }
//The GucciFactory class (object) represents a factory class that instantiates a particular set of product classes. These product classes are related to each other. public classGucciFactory : IAbstractFactory { publicIAbstractBag CreateBag() { return newGucciBag(); }
//The PoochyFactory class (object) represents a factory class that instantiates a particular set of product classes. These product classes are related to each other. public classPoochyFactory : IAbstractFactory { publicIAbstractBag CreateBag() { return newPoochyBag(); }