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

I have been told several definitions for it, looked on Wikipedia, but as a beginner to Java I'm still not sure what it means. Anybody fluent in Java and idiot?

Thanks in advance

share|improve this question
1  
Which static? There are a lot of statics (e.g. a non-exhaustive list mindprod.com/jgloss/static.html). – KennyTM Apr 15 '10 at 21:52
@Philip Strong: static is a Java idiosynchrasy and the jury is still out to decide if 'static' has its place in an Object-Oriented language or not ;) – SyntaxT3rr0r Apr 15 '10 at 22:16

2 Answers

up vote 43 down vote accepted

static means that the variable or method marked as such is available at the class level. In other words, you don't need to create an instance of the class to access it.

public class Foo {
    public static void doStuff(){
        // does stuff
    }
}

So, instead of creating an instance of Foo and then calling doStuff like this:

Foo f = new Foo();
f.doStuff();

You just call the method directly against the class, like so:

Foo.doStuff();

Does that help? Please let me know if that's not clear.

Good luck!

share|improve this answer
2  
That makes sense! Thanks. – Philip Strong Apr 15 '10 at 21:53
3  
It should also be mentioned that a static field is shared by all instances of the class, thus all see the same value of it. – Péter Török Apr 15 '10 at 21:56
3  
@Peter: it's not so much "shared by all instances" as that there's just one of it because it belongs to the class. Something public static is just free-for-all for everybody, not strictly just shared between instances. – polygenelubricants Apr 16 '10 at 3:52
@inkedmn Thank you so much. – theJollySin Jun 28 '12 at 3:11

In very laymen terms the class is a mold and the object is the copy made with that mold. Static belong to the mold and can be accessed directly without making any copies, hence the example above

share|improve this answer

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.