Someone told me:

If you are using Eclipse and don't see any blue words (i.e. member variables) in your methods, then those methods should really be static methods, as long as the parameters (if there are any) are primitive types, or (in the case of object references) are immutable and/or thread-safe.

Is there any other criteria that a Java developer should consider when deciding whether an instance method should really be a static method instead?

link|improve this question

feedback

4 Answers

up vote 11 down vote accepted

Put it simply, if it is pure "helper/function" which does not modify internal state of object, it's good candidate for static method.

link|improve this answer
feedback

... unless you plan to subclass and override the method.

as long as the parameters (if there are any) are primitive types, or (in the case of object references) are immutable and/or thread-safe.

I don't see why that is relevant. Any thread-safety considerations are exactly the same whether you make the method static or not. A static method with only immutable parameters (that also does not mess with static fields of the class) is thread-safe. If the parameters are not immutable and the method changes them and this becomes un-thread-safe, then making this an instance method won't help at all.

link|improve this answer
feedback

If you don't need an instance of an object to call the method it should be static. That is: If you only work with the parameters and no members of an object. Usually those are collected in utility or helper classes that are never instantiated (secure by declaring a private default constructor).

ps: concerning "blue words": You should always use the this. to access member variables and not count on your IDE as the code becomes quite unreadable once you use a simple viewer/editor.

link|improve this answer
If you don't need an instance and don't want to subclass (which I guess is a special case of needing an instance: for method dispatch) – Thilo Jan 11 at 8:25
I disagree with always using this.. I personally think it hurts the readability and adds bloat, so I only use this when I really need it. – Mark Rotteveel Jan 11 at 9:42
feedback

Any function which you plan to use in a global way for all your instances can be made static

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.