What are the "Builder Design pattern" and "Factory Design pattern" the difference? Which is more advantageous? I want to test this patterns? How do I represent as a graph?
|
1
|
|||||
|
|
|
The Factory pattern can almost be seen as a simplified version of the Builder pattern. In the Factory pattern, the factory is in charge of creating various subtypes of an object depending on the needs. The user of a factory method doesn't need to know the exact subtype of that object. An example of a factory method In the Builder pattern, different subtypes are also created by a builder method, but the composition of the objects might differ within the same subclass. To continue the car example you might have a Diagrams of both the Builder pattern and the Factory method pattern on available on Wikipedia. |
|||
|
|
|
|
The builder design pattern describes an object that knows how to craft another object of a specific type over several steps. It holds the needed state for the target item at each intermediate step. The factory design pattern describes an object that knows how to create several different but related kinds of object in one step, where the specific type is chosen based on given parameters. |
||||
|
|
|
With design patterns, there usually is no "more advantageous" solution that works for all cases. It depends on what you need to implement. From Wikipedia:
Wikipedia entry for factory design pattern: http://en.wikipedia.org/wiki/Factory_method_pattern Wikipedia entry for builder design pattern: http://en.wikipedia.org/wiki/Builder_pattern |
||
|
|
|
|
Both are Creational patterns, to create Object. 1) Factory Pattern - Assume, you have one super class and N number of sub classes. The object is created depends on which parameter/value is passed. 2) Builder pattern - to create complex object.
|
|||
|
|
