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

Possible Duplicate:
Why cant we have static method in an inner class?

Hi all, in java what exactly is the reason that we cannot declare static methods in [public] inner classes unless those inner classes are also declared static?

Amazingly top level classes can have any number of static methods without the need to have any special modifier

share|improve this question

marked as duplicate by Matt Ball, ZoogieZork, Brian Roach, Jeff Atwood May 10 '11 at 12:25

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 3 down vote accepted

Non-static inner classes come into existence only in the context of an instance of the outer class.

So ... if you're going to have a static method, the whole inner class has to be static. Without doing that, you couldn't guarantee that the inner class existed when you attempted to call the static method.

share|improve this answer
1  
This is just flat-out wrong. It's the instance of the inner class that exists in the context of the outer, and that only be virtue of having an implicit and hidden reference to the outer class. That has nothing to do with the class definition. – Software Monkey May 10 '11 at 5:25

The question to ask is -- if you do have a static method inside an inner class, how would you call that static method? The answer is, you can't.

An inner class is tied to instances of the outer class.

From Effective Java -- "Each instance of a nonstatic [nested] class is implicitly associated with an enclosing instance of its containing class".

This is the reason for making the "inner" class static. This actually a static nested class and its a full-blown class thats merely present in the enclosing class for packaging convenience.

share|improve this answer
1  
Why shouldn't OuterClass.InnerClass.staticMethod() be able to work? An inner class is simply a normal class with a hidden reference to the enclosing class instance. – Software Monkey May 10 '11 at 5:24
@Software Monkey -- Good point. Here is the catch -- The classloader does not have access to the inner class except in the context of an instance of the outer class, thats why you can't do something like what you mentioned above. – Kal May 10 '11 at 14:56
So it's a problem with Java then. Since other languages don't have this constrain. – Pacerier Nov 14 '11 at 6:06

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