I want to ask you why we need inner classes and why we use them ?
I know how to use inner classes but I don't know why..
|
|
||||
|
|
|
Some inner classes are exposed publicly (eg Inner classes are, basically, an implementation detail. For example, Swing makes extensive use of inner classes for event listeners. Without them you would end up polluting the global namespace with a bunch of classes you otherwise don't need to see (which may make their purpose harder to determine). Essentially inner classes are a form of scope. Package access hides classes from outside the package. Private inner classes hide that class from outside that class. Inner classes in Java are also a substitute for a lack of function pointers or method delegates (which are in C#) or closures. They are the means of passing a function to another function. For example, in the
so you can pass a method in. In C/C++ that could be achieved with:
being a pointer to a function. |
|||
|
|
|
Most of the time I use inner classes is because inner classes are the closest thing to the concept of closure available in other languages. This enables creating and working with an object of inner nested scope which has access to variables of its outer scope. This is often useful in creating callbacks (e.g. defining various |
|||
|
|
|
Anonymous inner classes in Java are a way to use the adapter pattern.
In Java, make sure you understand the difference between inner classs and nested class:
C# doesn't have inner classes in sense of Java, only nested classes. See also this Inner Class Example. |
||||
|
|
|
This piece from wikipedia might help you understand why we need an inner class:
|
|||
|
|
|
I use them to scope, for example, if I have the class ebook and I have ebookPrice, I enclose ebookPrice between the ebook class, as it is related to it and only usable (at least conceptually) inside it. ebookPrice may inherit from Price which is in a more higher scope, and related to every other class. (Just my two cents). |
|||
|
|
|
There are languages that take inner classes to quite some different level, like Beta and Newspeak. In these languages the nesting of classes serves as packaging (ie there are no packages). For a good coverage of this vision, please refer to "How many concepts for modules do we need?" on the object teams blog. See also the work by Gilad Bracha on his blog... |
|||
|
|