up vote 29 down vote favorite
7
share [g+] share [fb]

What is the difference between static and non static inner class?

link|improve this question

28% accept rate
4  
duplicate: stackoverflow.com/questions/70324/… – Jorn Aug 30 '09 at 7:24
feedback

6 Answers

up vote 39 down vote accepted

An inner class cannot be static, so I am going to recast your question as "What is the difference between static and non-static nested classes?".

A non-static nested class (or 'inner class') has full access to the members of the class within which it is nested. A static nested class does not have a reference to a nesting instance, so a static nested class cannot invoke non-static methods or access non-static fields of an instance of the class within which it is nested.

link|improve this answer
thanks for answer with description – Abhishek Sanghvi Aug 30 '09 at 7:46
1  
good answer. accessing static members from instances is so illogical. it should only be possible to access static members via SomeClass.StaticMember or, inside SomeClass, via StaticMember (without this.) then we wouldn’t get these questions at all. – flying sheep Sep 5 '11 at 13:40
feedback

Let's look in the source of wisdom for such questions: Joshua Bloch's "Effective Java":

Technically, there is no such thing as a static inner class. According to "Effective Java", the correct terminology is a "static nested class". A non-static nested class is indeed an inner class, along with anonymous classes and local classes.

And now to quote: "Each instance of a nonstatic [nested] class is implicitly associated with an enclosing instance of its containing class... It is possible to invoke methods on the enclosing instance."

A static nested class does not have access to the enclosing instance. It uses less space too.

link|improve this answer
I just was reading it . Item 22: Favor static member classes over nonstatic – raychenon Jul 22 '11 at 14:38
Also Bloch notes that the reference to the enclosing instance in an unnecessary non static inner class could prevent garbage collect if retained. – Carl Pritchett Jan 9 at 2:26
feedback

Actually, all it means is that a nested class declaration that is also static can be instantiated outside of the enclosing class.

link|improve this answer
feedback

static inner class: can declare static & non static members but can only access static members of its parents class.

non static inner class: can declare only non static members but can access static and non static member of its parent class.

link|improve this answer
There are no "static inner class", and (non static) inner class can declare some kind of static members. JLS 8.1.3: An inner class is a nested class that is not explicitly or implicitly declared static. [...] Inner classes may not declare static members, unless they are compile-time constant fields (§15.28). – Carlos Heuberger Jun 1 '11 at 14:22
feedback

A static nested class interacts with the instance members of its outer class (and other classes) just like any other top-level class. In effect, a static nested class is behaviorally a top-level class that has been nested in another top-level class for packaging convenience.

link|improve this answer
feedback

I would imagine a static inner class would produce a shared instance (of that class) that all common classes can use. A non static inner class would then be a normal inner class. I could be wrong, the term static class seems troubling...

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.