Static factory method OR Creation method - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T00:40:43Z http://stackoverflow.com/feeds/question/721183 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/721183/static-factory-method-or-creation-method 0 Static factory method OR Creation method Andrey Vityuk 2009-04-06T12:21:44Z 2009-04-06T12:29:34Z <p>I am wondering about correct definition for such construction:</p> <pre><code>class A { public static A create() { return new A(); } private A() { } } </code></pre> <p>In <a href="http://rads.stackoverflow.com/amzn/click/0201310058" rel="nofollow">Effective Java</a> (Item 1) and on <a href="http://en.wikipedia.org/wiki/Factory%5Fmethod%5Fpattern#Other%5Fbenefits%5Fand%5Fvariants" rel="nofollow">wikipedia article</a> I found that this is called <em>Static Factory Method</em> (some kind of <em>Factory Method</em>).</p> <p>But during reading of <a href="http://rads.stackoverflow.com/amzn/click/0321213351" rel="nofollow">Refactoring to Patterns</a> (Chapter 6) I met the same construction called <em>Creation Method</em>. Also, there is a note that it should not be messed up with a <em>Factory Method</em> pattern.</p> <p>Where truth is?</p> http://stackoverflow.com/questions/721183/static-factory-method-or-creation-method/721199#721199 0 Answer by sharptooth for Static factory method OR Creation method sharptooth 2009-04-06T12:25:51Z 2009-04-06T12:25:51Z <p>One approach is to call parameterless methods <em>creation methods</em> and parameterized (for example by an enum) - <em>factory methods</em>. In the sence that a factory is more powerful and can create objects of different types.</p> <p>If you use a parameterless method you have to decide elsewhere which class' method to call. With a parameterized method you pass this logic to the method itself. So the latter (<em>factory</em>) also decides by itself which class object to create.</p> http://stackoverflow.com/questions/721183/static-factory-method-or-creation-method/721208#721208 0 Answer by sleske for Static factory method OR Creation method sleske 2009-04-06T12:29:18Z 2009-04-06T12:29:18Z <p>Well, terminology often varies between authors, so I wouldn't worry too much about this.</p> <p>I suppose, however, that "Refactoring to Patterns" warns against calling this a "factory method", because there is the <a href="http://en.wikipedia.org/wiki/Factory%5Fmethod%5Fpattern" rel="nofollow">factory method pattern</a>. Since the factory method pattern is more than just a factory method, they propose a different name to avoid confusion.</p> <p>I guess you could also call it a "simple static factory", but that's a bit wordy (and non-standard).</p> http://stackoverflow.com/questions/721183/static-factory-method-or-creation-method/721210#721210 1 Answer by toolkit for Static factory method OR Creation method toolkit 2009-04-06T12:29:34Z 2009-04-06T12:29:34Z <p>Have a read of this <a href="http://c2.com/cgi/wiki?FactoryMethod" rel="nofollow">discussion</a> of Factory Method.</p> <blockquote> <p><a href="http://c2.com/cgi/wiki?FactoryMethodPattern" rel="nofollow">FactoryMethodPattern</a> is different from <a href="http://c2.com/cgi/wiki?FactoryMethod" rel="nofollow">FactoryMethod</a> or <a href="http://c2.com/cgi/wiki?CreationMethod" rel="nofollow">CreationMethod</a>.</p> </blockquote>