When to use Factory method pattern?
Please provide me some specific idea when to use it in project? and how it is a better way over new keyword?
|
4
|
When to use Factory method pattern? Please provide me some specific idea when to use it in project? and how it is a better way over new keyword?
|
|||
|
|
|
|
Although this isn't necessarily it's primary use, it's good for something where you have specialized instances of a class:
You need both methods to build a tax object, but you don't want to have to depend on using "new" everytime because the constructors may be complex. This way I encapsulate all of the changes into a single method that is clear to others for future maintenance. |
||
|
|
|
|
Use the Abstract Factory pattern when a system should be independent of how its products are created, composed, and represented. a system should be configured with one of multiple families of products. a family of related product objects is designed to be used together, and you need to enforce this constraint. you want to provide a class library of products, and you want to reveal just their interfaces, not their implementations. |
||
|
|
|
|
It's better to have a factory method pattern vs new keyword. The idea is to move complete instantiation of objects outside the business logic. This principle is the crux of dependency injection. And, the work of the factory method can be delegated to a Dependency Injection Framework like Spring.net or Castle Windsor at a later point. |
||
|
|
|
|
You can refer to section 9.5 Factories from Framework Design Guidelines 2nd Edition. Here is quoted set of guidelines with respect to using factories over constructors:
And from section 5.3 Constructor Design
|
|||
|
|
|
|
To answer the second part of you question from my opinion, I think the reason it's better than the 'new' keyword is that the factory method reduces the dependancy on constructors of particular classes. By using a factory method, you delegate the creation of the object in question to someone else, so the caller doesn't need teh knowledge of how to create the object. |
||
|
|
|
|
I have two cases where I tend to use it:
An example of the first case could be that you want to have a factory creating An example of the second case is if you have an interface defined and determine at execution time which exact implementation of the interface to use (for instance by specifying it in a configuration file). |
||
|
|