Java - static methods best practices - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:19:36Z http://stackoverflow.com/feeds/question/538870 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/538870/java-static-methods-best-practices 14 Java - static methods best practices avalys 2009-02-11T21:24:32Z 2009-11-25T06:29:42Z <p>Let's say I have a class designed to be instantiated. I have several private "helper" methods inside the class that do not require access to any of the class members, and operate solely on their arguments, returning a result.</p> <pre><code>public class Example { private Something member; public double compute() { double total = 0; total += computeOne(member); total += computeMore(member); return total; } private double computeOne(Something arg) { ... } private double computeMore(Something arg) {... } } </code></pre> <p>Is there any particular reason to specify <code>computeOne</code> and <code>computeMore</code> as static methods - or any particular reason not to?</p> <p>It is certainly easiest to leave them as non-static, even though they could certainly be static without causing any problems.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/538903#538903 7 Answer by Steve B. for Java - static methods best practices Steve B. 2009-02-11T21:30:56Z 2009-02-11T21:30:56Z <p>My personal preference would be to declare them static, as it's a clear flag that they're stateless. </p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/538909#538909 5 Answer by mmyers for Java - static methods best practices mmyers 2009-02-11T21:32:53Z 2009-02-12T15:34:59Z <p>It might result in slightly smaller bytecode, since the static methods won't get access to <code>this</code>. I don't think it makes any difference in speed (and if it did, it would probably be too small to make a difference overall).</p> <p>I would make them static, since I generally do so if at all possible. But that's just me.</p> <p><hr /></p> <p><strong>EDIT:</strong> This answer keeps getting downvoted, possibly because of the unsubstantiated assertion about bytecode size. So I will actually run a test.</p> <pre><code>class TestBytecodeSize { private void doSomething(int arg) { } private static void doSomethingStatic(int arg) { } public static void main(String[] args) { // do it twice both ways doSomethingStatic(0); doSomethingStatic(0); TestBytecodeSize t = new TestBytecodeSize(); t.doSomething(0); t.doSomething(0); } } </code></pre> <p>Bytecode (retrieved with <code>javap -c -private TestBytecodeSize</code>):</p> <pre><code>Compiled from "TestBytecodeSize.java" class TestBytecodeSize extends java.lang.Object{ TestBytecodeSize(); Code: 0: aload_0 1: invokespecial #1; //Method java/lang/Object."&lt;init&gt;":()V 4: return private void doSomething(int); Code: 0: return private static void doSomethingStatic(int); Code: 0: return public static void main(java.lang.String[]); Code: 0: iconst_0 1: invokestatic #2; //Method doSomethingStatic:(I)V 4: iconst_0 5: invokestatic #2; //Method doSomethingStatic:(I)V 8: new #3; //class TestBytecodeSize 11: dup 12: invokespecial #4; //Method "&lt;init&gt;":()V 15: astore_1 16: aload_1 17: iconst_0 18: invokespecial #5; //Method doSomething:(I)V 21: aload_1 22: iconst_0 23: invokespecial #5; //Method doSomething:(I)V 26: return } </code></pre> <p>Invoking the static method takes two bytecodes (byteops?): <code>iconst_0</code> (for the argument) and <code>invokestatic</code>.<br /> Invoking the non-static method takes three: <code>aload_1</code> (for the <code>TestBytecodeSize</code> object, I suppose), <code>iconst_0</code> (for the argument), and <code>invokespecial</code>. (Note that if these hadn't been private methods, it would have been <code>invokevirtual</code> instead of <code>invokespecial</code>; see <a href="http://java.sun.com/docs/books/jvms/second_edition/html/Compiling.doc.html#14787" rel="nofollow">JLS §7.7 Invoking Methods</a>.)</p> <p>Now, as I said, I don't expect there to be any great difference in performance between these two, other than the fact that <code>invokestatic</code> requires one fewer bytecode. <code>invokestatic</code> and <code>invokespecial</code> should both be slightly faster than <code>invokevirtual</code>, since they both use static binding instead of dynamic, but I have no idea if either is faster than the other. I can't find any good references either. The closest I can find is <a href="http://www.javaworld.com/javaworld/jw-06-1997/jw-06-hood.html" rel="nofollow">this 1997 JavaWorld article</a>, which basically restates what I just said:</p> <blockquote> <p>The fastest instructions will most likely be <code>invokespecial</code> and <code>invokestatic</code>, because methods invoked by these instructions are statically bound. When the JVM resolves the symbolic reference for these instructions and replaces it with a direct reference, that direct reference probably will include a pointer to the actual bytecodes.</p> </blockquote> <p>But many things have changed since 1997.</p> <p>So in conclusion... I guess I'm still sticking with what I said before. Speed shouldn't be the reason to choose one over the other, since it would be a micro-optimization at best.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/538914#538914 15 Answer by Esko Luontola for Java - static methods best practices Esko Luontola 2009-02-11T21:33:45Z 2009-02-11T21:33:45Z <p>I prefer such helper methods to be "private static". That will make it clear to the reader that they will not modify the state of the object (and my IDE will show calls to static methods in italics, so I will know it is static without looking a the signature).</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/538918#538918 1 Answer by notnot for Java - static methods best practices notnot 2009-02-11T21:34:33Z 2009-02-11T21:34:33Z <p>The static/non-static question comes down to "will I really need to use an object of this class"?</p> <p>So, are you passing the object between different methods? Does the object contain information that is useful outside the context of the static methods? Is there any reason not to define methods both ways if you'll use them both ways?</p> <p>If you're in this dilemma, it seems to me that you have all of the data required for the method floating around in your code outside of the object. Is this what you want? Would it be easier to just always collect that data into an object each time? You might just be ambivalent about committing to a single model. If you can do it all using one way, then pick either static or non-static and go with it.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/538922#538922 6 Answer by Axelle Ziegler for Java - static methods best practices Axelle Ziegler 2009-02-11T21:35:00Z 2009-02-11T21:35:00Z <p>I can't really think of clear advantages for private static method. That being said, there is no specific advantages to making them non-static either. It's mainly a matter of presentation : you might want to make them static to clearly underline the fact that they are not altering an object.</p> <p>For method with different access privileges, I think there are two main arguments :</p> <ul> <li>static methods can be called without creating an instance of an object, which can be useful</li> <li>static methods can't be inherited, which can be a problem if you need polymorphism (but is irrelevant for private methods).</li> </ul> <p>Besides that, the difference is pretty small, and I strongly doubt that the extra this pointer passed to instance method makes a significant difference.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/538934#538934 0 Answer by notnot for Java - static methods best practices notnot 2009-02-11T21:39:30Z 2009-02-11T21:39:30Z <p>More specifically to the example you've given, it seems that the purpose of defining these methods is more for code clarity when you're reading it than for functionality (they <em>are</em> defined as private). In that case, going with static really does nothing for you, since the purpose of static is to expose class functionality.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/538953#538953 1 Answer by Kip for Java - static methods best practices Kip 2009-02-11T21:43:30Z 2009-02-11T21:43:30Z <p>If the method is basically just a subroutine that will never foreseeably use state information, declare it static.</p> <p>This allows it to be used in other static methods or in class initialization, i.e.:</p> <pre><code>public class Example { //... //Only possible if computeOne is static public final static double COMPUTED_ONE = computeOne(new Something("1")); //... } </code></pre> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/538976#538976 0 Answer by Andy for Java - static methods best practices Andy 2009-02-11T21:48:08Z 2009-02-11T21:48:08Z <p>My preference in cases like these is to make <code>computeOne</code> and <code>computeMore</code> static methods. The reason: encapsulation. The less code which has access to the implementation of your class, the better.</p> <p>In the example you give, you state that <code>computeOne</code>and <code>computeMore</code> shouldn't need to access the internals of the class, so why give the opportunity for maintainers of the class to meddle with the internals.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/538994#538994 0 Answer by Uri for Java - static methods best practices Uri 2009-02-11T21:51:38Z 2009-02-11T21:51:38Z <p>I would declare them as static to flag them as stateless.</p> <p>Java does not have a better mechanism for minor operations that aren't exported, so I think private static is acceptable.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/539006#539006 9 Answer by R. Bemrose for Java - static methods best practices R. Bemrose 2009-02-11T21:55:55Z 2009-02-11T21:55:55Z <p>The answer is... it depends.</p> <p>If member is an instance variable specific to the object you're dealing with, then why pass it as a parameter at all?</p> <p>For instance:</p> <pre><code>public class Example { private Something member; public double compute() { double total = 0; total += computeOne(); total += computeMore(); return total; } private double computeOne() { /* Process member here */ } private double computeMore() { /* Process member here */ } } </code></pre> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/539426#539426 0 Answer by oxbow_lakes for Java - static methods best practices oxbow_lakes 2009-02-11T23:55:07Z 2009-02-12T08:05:08Z <p>One reason you might want to declare static helper methods is if you need to call them in the class constructor "before" <code>this</code> or <code>super</code>. For example:</p> <pre><code>public class MyClass extends SomeOtherClass { public MyClass(String arg) { super(recoverInt(arg)); } private static int recoverInt(String arg) { return Integer.parseInt(arg.substring(arg.length() - 1)); } } </code></pre> <p>This is a bit of a contrived example but clearly <code>recoverInt</code> cannot be an instance method in this case.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/539510#539510 0 Answer by Oscar Reyes for Java - static methods best practices Oscar Reyes 2009-02-12T00:28:18Z 2009-02-12T20:10:26Z <blockquote> <p><em>or any particular reason not to [declare them as static]?</em></p> </blockquote> <p>Yes.</p> <p>By keeping them as instance methods, you allow your self to provide a different implementation later.</p> <p>It may sound silly ( and actually it would be if those methods are used only by you in a 50 line program) but in larger applications, or in libraries used by someone else, you may decide to choose a better implementation, but don't want to breake existing code.</p> <p>So, what you do, is create a subclass and return that in the new versions, since the methods were declared as instance methods, you'll let polymorphism do its job. </p> <p>Addtionally you could benefit from making the contructor private and provide an static factory method for the same reason. </p> <p>So, my recomendation is, keep them as instance methods, and avoid static if possible.<br /> Take advantage of the dynamism the language provides.</p> <p>See here for a somehow related video:<a href="http://www.youtube.com/watch?v=aAb7hSCtvGw" rel="nofollow"> How to design a good API and why it matters</a></p> <p>Although it is not directly related with the "statis vs instance" methods, it touches some interesting points in API design.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/540005#540005 2 Answer by Bhushan for Java - static methods best practices Bhushan 2009-02-12T04:20:31Z 2009-02-12T04:20:31Z <p>I would like to clarify few things which other posters have said as its giving wrong information.</p> <p>Firstly since the methods are private even if you declare them static you will not be able to access them outside of this class. Secondly they are private so you can not even override in subclass so static or non-static doesn't make any difference. Thirdly a non-static private method can be called from a constructor of the class also, it need not be static.</p> <p>Now coming to your question if a private helper method should be defined as static or non-static. I will go with Steve's answer as marking a private method static shows that this method is stateless as I also follow this rule when I code.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/577821#577821 1 Answer by dsimcha for Java - static methods best practices dsimcha 2009-02-23T14:35:38Z 2009-02-23T14:35:38Z <p>One reason is that, all else being equal, static method calls should be faster. Static methods cannot be virtual, and do not take an implicit this reference.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/589637#589637 0 Answer by siriwardana for Java - static methods best practices siriwardana 2009-02-26T08:25:37Z 2009-02-26T08:25:37Z <p>What is meant by stateless methods? Please some one explain it for me. Because I am making class variables and methods only if it is necessary.</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/1794949#1794949 0 Answer by cedar715 for Java - static methods best practices cedar715 2009-11-25T05:57:31Z 2009-11-25T05:57:31Z <p>As many people said, make it is as a <strong><em>static</em></strong>! Here's the thumb rule which I follow : If you think the method is just a <em>mathematical function</em> i.e it is stateless, doesn't involve any instance variables(=> no blue color vars [in eclipse] in the method), and the result of the method will be the same for 'n' number of calls (with the same parameters, ofcourse), then mark that method as STATIC. </p> <p>And if you think that this method will be useful to other class then move it to a Util class otherwise, put the method as private in the sameclass. (minimizing the accessibility)</p> http://stackoverflow.com/questions/538870/java-static-methods-best-practices/1795030#1795030 0 Answer by Everyone for Java - static methods best practices Everyone 2009-11-25T06:29:42Z 2009-11-25T06:29:42Z <p>Off-Topic: I'd keep the helper methods in a standalone utility/helper class with only static methods in it. </p> <p>The trouble with having helper methods at the point of use ( read 'same class' ) is that someone down the line may just choose to post their own unrelated helper methods in the same place </p>