Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am wondering when to use static methods? Say If i have a class with a few getters and setters, a method or two, and i want those methods only to be invokable on an instance object of the class. Does this mean i should use a static method?

e.g

Obj x = new Obj();
x.someMethod

or

Obj.someMethod

(is this the static way?)

I'm rather confused!

share|improve this question

13 Answers

up vote 96 down vote accepted

One rule-of-thumb: ask yourself "does it make sense to call this method, even if no Obj has been constructed yet?" If so, it should definitely be static.

So in a class Car you might have a method double convertMpgToKpl(double mpg) which would be static, because one might want to know what 35mpg converts to, even if nobody has ever built a Car. But void setMileage(double mpg) (which sets the efficiency of one particular Car) can't be static since it's inconceivable to call the method before any Car has been constructed.

(Btw, the converse isn't always true: you might sometimes have a method which involves two Car objects, and still want it to be static. E.g. Car theMoreEfficientOf( Car c1, Car c2 ). Although this could be converted to a non-static version, some would argue that since there isn't a "privileged" choice of which Car is more important, you shouldn't force a caller to choose one Car as the object you'll invoke the method on. This situation accounts for a fairly small fraction of all static methods, though.)

share|improve this answer
14  
A few good examples here. I would add, however, that "static" is often valuable when you know something is not going to change across instances. If this is the case, I would really consider the "Single Responsability Principle", which implies a class should have one responsability and thus only one reason to change. I feel one should consider moving the "ConvertMpgToKpl(double mpg)" function, and similar methods, to their own class. The purpose of a car object is to allow instantiation of cars, not provide a comparison between them. Those should be external to the class. – Zack Jannsen Aug 13 '12 at 11:04

Define static methods in the following scenarios only:

  1. If you are writing utility classes and they are not supposed to be changed.
  2. If the method is not using any instance variable.
  3. If any operation is not dependent on instance creation.
  4. If there is some code that can easily be shared by all the instance methods, extract that code into a static method.
  5. If you are sure that the definition of the method will never be changed or overridden. As static methods can not be overridden.
share|improve this answer
6  
+1 for clean, direct, and to the point! – Zack Jannsen Aug 13 '12 at 11:12

After reading Misko's articles I believe that static methods are bad from a testing point of view. You should have factories instead(maybe using a dependency injection tool like Guice).

how do I ensure that I only have one of something

only have one of something The problem of “how do I ensure that I only have one of something” is nicely sidestepped. You instantiate only a single ApplicationFactory in your main, and as a result, you only instantiate a single instance of all of your singletons.

The basic issue with static methods is they are procedural code

The basic issue with static methods is they are procedural code. I have no idea how to unit-test procedural code. Unit-testing assumes that I can instantiate a piece of my application in isolation. During the instantiation I wire the dependencies with mocks/friendlies which replace the real dependencies. With procedural programing there is nothing to "wire" since there are no objects, the code and data are separate.

share|improve this answer
I don't understand the part about not being able to unit-test procedural code. Don't you just set up test cases that map correct input to correct output using the static method together with the class as your "unit"? – tjb Mar 21 '12 at 18:40
1  
You could do that to test those functions. But when using these static methods in other classes you want to test, I believe you can't fake them(mocks/friendlies) or anything, because you can not instantiate a class. – Alfred Mar 21 '12 at 23:01
But can't static methods only access static members?, If my understanding of this is correct then how could instantiation of the class make a difference? – tjb Mar 22 '12 at 7:55
Have you read the complete article => misko.hevery.com/2008/12/15/…? You should try to understand the 3rd paragraph about seams/isolation. Especially the last line of the 3rd paragraph => " Yes, static methods are easy to call, but if the static method calls another static method there is no way to overrider the called method dependency." – Alfred Mar 22 '12 at 10:55
Thanks for pointing to that paragraph, after reading all three articles I think I'm beginning to understand. – tjb Mar 22 '12 at 11:42
show 3 more comments

No, static methods aren't associated with an instance; they belong to the class. Static methods are your second example; instance methods are the first.

share|improve this answer

Use a static method when you want to be able to access the method without an instance of the class.

share|improve this answer
6  
This does not give any rationale for the design of a program. – adamjmarkham Jan 1 '12 at 19:20

Static methods in java belong to the class (not an instance of it). They use no instance variables and will usually take input from the parameters, perform actions on it, then return some result. Instances methods are associated with objects and, as the name implies, can use instance variables.

share|improve this answer

Static methods and variables are controlled version of 'Global' functions and variables in Java. In which methods can be accessed as classname.methodName() or classInstanceName.methodName(), i.e. static methods and variables can be accessed using class name as well as instances of the class.

Class can't be declared as static(because it makes no sense. if a class is declared public, it can be accessed from anywhere), inner classes can be declared static.

share|improve this answer

Actually, we use static properties and methods in a class, when we want to use some part of our program should exists there until our program is running. And we know that, to manipulate static properties, we need static methods as they are not a part of instance variable. And without static methods, to manipulate static properties is time consuming.

share|improve this answer

Static: Obj.someMethod

Use static when you want to provide class level access to a method, i.e. where the method should be callable without an instance of the class.

share|improve this answer

Static methods are not associated with an instance, so they can not access any non-static fields in the class.

You would use a static method if the method does not use any fields (or only static fields) of a class.

If any non-static fields of a class are used you must use a non-static method.

share|improve this answer

Static methods don't need to be invoked on the object and that is when you use it. Example: your Main() is a static and you don't create an object to call it.

share|improve this answer

static variable

It is a variable which belongs to the class and not to object(instance)
Static variables are initialized only once , at the start of the execution . These variables will be initialized first, before the initialization of any instance variables
A single copy to be shared by all instances of the class
A static variable can be accessed directly by the class name and doesn’t need any object
Syntax : <class-name>.<variable-name>

static method

It is a method which belongs to the class and not to the object(instance)
A static method can access only static data. It can not access non-static data (instance variables)
A static method can call only other static methods and can not call a non-static method from it.
A static method can be accessed directly by the class name and doesn’t need any object
Syntax : <class-name>.<method-name>
A static method cannot refer to “this” or “super” keywords in anyway

Side Note:

main method is static , since it must be be accessible for an application to run , before any instantiation takes place.

Read more at http://www.javatutorialhub.com/java-static-variable-methods.html#FJeBziQAKu3M2wL8.99

share|improve this answer

Actually, I don't see any reason to use static methods/classes, You can use singletons instead, it has the same benefits, and the same behaviour as the static classes. The only different is that static classes are populated at the permanent stack memory of the JVM, and the singleton is in the heap section of the JVM (Which is actually another reason not to use static in java. since the permanent stack is allocated much more purely then the heap)

share|improve this answer
2  
Well, first of all, in Java to implement Singletons you commonly use static anyway to ensure there is one instance of the object (or alternatively a DI framework like Spring, but this goes beyond the scope). If you have a simple situation like the Car example, just to make a mathematical calculation, using a Singleton is an overkill. Imagine having to instantiate the Math class just to use the Math.abs() or Math.sin() functions. The Singleton pattern is used for totally different situations, where you need to ensure certain resources (connections, etc.) are fully under control. – jbx Jan 24 at 16:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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