What are some common, real world examples of using the Builder Pattern? What does it buy you? Why not just use a Factory Pattern?
|
3
|
|
|
|
|
|
The key difference btw a builder and factory IMHO, is that a builder is useful when you need to do lots of things to build an object. For example imagine a DOM. You have to create plenty of nodes and attributes to get your final object. A factory is used when the factory can easily create the entire object within one method call. One example of using a builder is a building an XML document, I've used this model when building HTML fragments for example I might have a Builder for building a specific type of table and it might have the following methods (parameters are nto shown): BuildOrderHeaderRow() BuildLineItemSubHeaderRow() BuildOrderRow() BuildLineItemSubRow() This builder would then spit out the html for me. This is much easier to read then walking through a large procedural method. |
||
|
|
|
|
.NET StringBuilder class is a great example of builder pattern. It is mostly used to create a string in a series of steps. The final result you get on doing ToString() is always a string but the creation of that string varies according to what functions in the StringBuilder class were used. To sum up, the basic idea is to build complex objects and hide the implementation details of how it is being built. |
||
|
|
|
The rule of thumb I noticed after some time was the following: Consider a restaurant. The creation of "Todays Meal" is a factory pattern, because you tell the kitchen "get me todays meal" and the kitchen/factory decides what object to generate. based on hidden critereas. The builder appears if you ordered a custom pizza. In this case, the waiter tells the chef/builder "I need a pizza, add cheese, cheese, onions and baken to it!". Thus, the builder exposes what attributes the generated object should have, but hides how to set them. HTH, Tetha |
||
|
|
|
|
I used builder in home-grown messaging library. The library core was receiving data from the wire, collecting it with Builder instance, then, once Builder decided it've got everything it needed to create a Message instance, Builder.GetMessage() was constructing a message instance using the data collected from the wire. |
||
|
|
|
|
Building on the previous answers (pun intended), an excellent real-world example is Groovy's built in support for
See Builders in the Groovy Documentation |
||
|
|
|
|
For a multi-threaded problem, we needed a complex object to be built up for each thread. The object represented the data being processed, and could change depending on the user input. Could we use a factory instead? Yes Why didn't we? Builder makes more sense I guess. Factories are used for creating different types of objects that are the same basic type (implement the same interface or base class). Builders build the same type of object over and over, but the construction is dynamic so it can be changed at runtime. |
||
|
|
|
|
You use it when you have lots of options to deal with. Think about things like jmock:
It feels a lot more natural and is...possible. There's also xml building, string building and many other things. Imagine if
|
||
|
|
