I can understand what inner class is and how to write program. My question is in what situation do programmers really need inner class?
|
Sometimes there is some functionality which is best represented as an object, but which is only meaningful within the context of another object, which does not necessarily need to be exposed to the outside world, and which can benefit from having access to the parent classes data (so as to not violate encapsulation). The best example that I can think of is putting a Node class inside of a LinkedList. Nodes are only meaningful to the LinkedList, so they only exist within one. No one outside of the LinkedList cares about nodes or should have access to them. |
|||||||||
|
|
An inner class allows us to remove that logic and place it into its own class. So from an object-oriented point of view, we've taken functionality out of where it doesn't belong and have put it into its own class. Please go through this link.... http://www.javaworld.com/javaworld/javaqa/2000-03/02-qa-innerclass.html |
|||
|
|
|
Also as you know in Java exists nested classes, which is static inner clasess. From previous posts becomes clear when we need to use an inner class but I think you also interested in the question "Why we need nested classes (static inner class)". The answer is simply, there is the same purpose as for the inner class except few things. 1) The nested class (static inner) is required when we whant to exclude some logic that concerns another object but this logic might be used in outworld. The simpliest examples is a builders or editors of some object. For example we have class Foo which may have a lot of optional fields, to construct such object we may decide to introduce a builder class which will do this work.
This example illustrates at leas one reason why we need such classes 2) The second difference between inner and static inner classes is that the first one always has pointer to the parent class. Actully compiler creates synthetic field member for the non static inner class of the type of it's parent, exectly of this reason we can access private members of the parent class. The static inner clasess doesn't has such generated field member. For instance we has just simple parent class with declared non static inner class:
but in fact if take into account the byte code it looks like:
if you want you can figure out this throught generated byte code. |
|||
|
|
|
||||
|
|
|
One of the use of inner class is : Inner class helps in multiple-inheritance. Inner class allows you to inherit from more than one non-interface. //first case; can implement if two classes are interface
//second case; you can extend only one class. This case inner class can help to inherit other class as well
|
|||
|
|
