Possible Duplicate:
Java: Static vs non static inner class
Hi guys,
What is a static inner class? what is the difference between static inner class between non-inner class?
And I have no concept about static inner class, can any one explain me?
Hi guys, What is a static inner class? what is the difference between static inner class between non-inner class? And I have no concept about static inner class, can any one explain me? |
|||
|
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.
|
A static inner class is a class nested inside another class that has the
Class |
|||
|
|
|
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. |
|||
|
|