Builder(Chapter 6 of Pro Objective-C Design Patterns for iOS)

We discussed Abstract Factory in the last chapter. You might have realized that both the Abstract Factory and Builder patterns are similar in many ways in terms of being used for abstract object creation. However, they are very different. Builder focuses on constructing a complex object step-by-step, when a lot of times the same type of object can be constructed in different ways. On the other hand, Abstract Factory’s emphasis is on creating suites of products that can be either simple or complex. A builder returns a product as a final step of a multiple-step construction process, but the product gets returned immediately from an abstract factory. The following table summarizes the main differences between the Builder and Abstract Factory patterns.

Builder(Chapter 6 of Pro Objective-C Design Patterns for iOS) 

转载于:https://www.cnblogs.com/zhtf2014/archive/2012/04/03/2430975.html