Java Programming/Nested Classes
Appearance
Nesting Classes
In Java you can define a class inside an class. The inner class will be only visible and referencable from the outer class. The inner class is for private use for the outer class.
This is an old revision of this page, as edited by Ervinn (discuss | contribs) at 00:13, 1 April 2006. It may differ significantly from the current revision. |
In Java you can define a class inside an class. The inner class will be only visible and referencable from the outer class. The inner class is for private use for the outer class.