An inner class is said to be a member of the outer class. Does that mean that whenever an object of the outer class is created, an instance of inner class is also created implicitly?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No. An instance of the inner class is created only when you instantiate it. Note that the constructor of the inner class requires an instance of the outer class (although this is masked by the compiler). This is true for non-static nested classes. Static nested classes can be instantiated without a parent instance (since they are static) |
|||||||||||||
|
|
There are different types of inner classes each acting differently.
You can find a good overview of all of them here : http://www.javaworld.com/javaworld/javaqa/2000-03/02-qa-innerclass.html |
|||
|
|
|
It means that you need an instance of the outer class before you can have an instance of the inner class |
|||
|
|