Static factory method OR Creation method - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T00:40:43Zhttp://stackoverflow.com/feeds/question/721183http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/721183/static-factory-method-or-creation-method0Static factory method OR Creation methodAndrey Vityuk2009-04-06T12:21:44Z2009-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#7211990Answer by sharptooth for Static factory method OR Creation methodsharptooth2009-04-06T12:25:51Z2009-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#7212080Answer by sleske for Static factory method OR Creation methodsleske2009-04-06T12:29:18Z2009-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#7212101Answer by toolkit for Static factory method OR Creation methodtoolkit2009-04-06T12:29:34Z2009-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>