CSC/ECE 517 Fall 2009/wiki3 16 AD

From Expertiza_Wiki
Revision as of 03:29, 18 November 2009 by Beacon (talk | contribs) (→‎Definition)
Jump to navigation Jump to search

Definition

Factory Method is a creational pattern. This pattern helps to model an interface for creating an object which at creation time can let its subclasses decide which class to instantiate.It is called as Factory Pattern as it is responsible for "Manufacturing" an Object. It helps instantiate the appropriate Subclass by creating the right Object from a group of related classes. The Factory Pattern encourages loose coupling by eliminating the need to bind application-specific classes into the code.

Overview

Comparison with other Creational Patterns

In depth Analysis

External Links and References