Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the benifits of making a method STATIC besides calling the static method without creating the instance or object of the class in Java.

Regards

share|improve this question
3  
Haha, those are the benefits. Instead of having to perhaps float around multiple instances of an object, you only need one for the entire appliation! It also implies the method has nothing to do with the state of the object. – thatidiotguy Nov 14 '12 at 15:20
See this: stackoverflow.com/questions/4530386/… – Adam Gent Nov 14 '12 at 15:22
Well, that's the main advantage... And it allows to manipulate entities that an not objects (ie. primitive): see the Math class, made of static methods (actually, functions...). An added bonus is to allow to extend objects that cannot be extended otherwise: see Arrays.sort(). (Added as comment as the topic was quickly closed! ;-)) – PhiLho Nov 14 '12 at 15:23

closed as not constructive by Marko Topolnik, Nambari, hvgotcodes, PermGenError, Ian Roberts Nov 14 '12 at 15:21

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

Browse other questions tagged or ask your own question.