What are the differences between the Builder, Factory Method, and Abstract Factory patterns? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:08:45Z http://stackoverflow.com/feeds/question/183773 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/183773/what-are-the-differences-between-the-builder-factory-method-and-abstract-factor 6 What are the differences between the Builder, Factory Method, and Abstract Factory patterns? ilitirit 2008-10-08T16:54:08Z 2008-10-10T12:03:45Z <p>A program receives a list of Messages (base type). Each message in the list has to be processed according to it's type (descendant type). However, different messages need different inputs in order to be processed correctly.</p> <p>What is the following technique called? (I haven't checked this code in a compiler)</p> <pre><code>abstract class MessageProcessor { public static MessageProcessor GetProcessor(Message message, DataDomain data) { if (message.GetType() == typeof(FooMessage)) { return new FooMessageProcessor(message, data.Name, data.Classification); } else if (message.GetType() == typeof(BarMessage)) { return new BarMessageProcessor(message, data.AccountNo, data.CreditLimit); } else throw new SomeException("Unrecognized type"); } public abstract void Process(); } </code></pre> <p>And this one?</p> <pre><code>static class MessageProcessorFactory { public static MessageProcessor GetProcessor(Message message, DataDomain data) { if (message.GetType() == typeof(FooMessage)) { return new FooMessageProcessor(message, data.Name, data.Classification); } else if (message.GetType() == typeof(BarMessage)) { return new BarMessageProcessor(message, data.AccountNo, data.CreditLimit); } else throw new SomeException("Unrecognized type"); } } </code></pre> <p>And what is it called if I can inject the ProcessBuilder class into a MessageProcessor (using a property or Setter) and then call Process?</p> <p>What technique would be the best pattern for solving this problem?</p> http://stackoverflow.com/questions/183773/what-are-the-differences-between-the-builder-factory-method-and-abstract-factor/183836#183836 3 Answer by Mark Cidade for What are the differences between the Builder, Factory Method, and Abstract Factory patterns? Mark Cidade 2008-10-08T17:11:54Z 2008-10-08T17:32:37Z <p>They are both examples of the <em>factory method</em> pattern. The only difference is that the second example has the method in its own static class. </p> <p>This would be an example of the <em>abstract factory</em> pattern:</p> <pre><code>abstract class MessageProcessorFactory { public abstract MessageProcessor GetProcessor (Message message, DataDomain data); } class FooMessageProcessorFactory : MessageProcessorFactory { public override MessageProcessor GetProcessor (Message message, DataDomain data) { return new FooMessageProcessor(data.Name, data.Classification); } } </code></pre> <p>Each MessageProcessor gets its own factory class which makes use of polymorphism.</p> <p>Passing a ProcessBuilder to create the process would be the <em>strategy</em> pattern:</p> <pre><code>class MessageProcessor { ProcessBuilder builder; public MessageProcessor(ProcessBuilder builder) { this.builder = builder; } public void Process() { builder.BuildMessage(); builder.BuildProcess(); builder.Process(); } } var mp = new MessageProcessor(new FooProcessBuilder()); </code></pre> <p>The simplest solution would be to encapsulate a factory method:</p> <pre><code>static void Process(Message msg, DataDomain data) { var p = getProcessor(msg.GetType()); p.Process(msg, data); } </code></pre> <p>If it's a small known number of types, you can use the series of type checks:</p> <pre><code>private static MessageProcessor getProcessor(Type msgType) { return (msgType == typeof(FooMessage)) ? new FooMessageProcessor() : (msgType == typeof(BarMessage)) ? new BarMessageProcessor() : new DefaultMessageProcessor(); } </code></pre> <p>Otherwise use a dictionary:</p> <pre><code>Dictionary&lt;Type,MessageProcessor&gt; processors; private static MessageProcessor getProcessor(Type msgType) { return processors[msgType]; } </code></pre> http://stackoverflow.com/questions/183773/what-are-the-differences-between-the-builder-factory-method-and-abstract-factor/184932#184932 0 Answer by DaSteph for What are the differences between the Builder, Factory Method, and Abstract Factory patterns? DaSteph 2008-10-08T21:07:56Z 2008-10-08T21:07:56Z <p>In my understanding <em>factory method</em> defnies the abstract type of class with which to work with but delegates the creation of the concrete type to the succeeding/implementing classes. <em>Abstract factory</em> would define an interface for a manufactorer of a set of corresponding classes. A <em>builder</em> works simply to build an object step by step giving some control to the calling instance.</p>