| Author |
Advantages of inner classes
|
Pradeep bhatt
Ranch Hand
Joined: Feb 27, 2002
Posts: 8876
|
|
|
What are the advantages of inner class?
|
Groovy
|
 |
Chris Stehno
Ranch Hand
Joined: Feb 26, 2001
Posts: 180
|
|
There are many advantages, though some of them are really personal or design preference. 1 - with inner classes you can access private members of the enclosing class. 2 - they are useful for interface implementations that are only used by the enclosing class (event handlers in a application) 3 - they are useful for providing fine grained access and creation control over an interface implementation that is retrieved externally (maybe something like an Iterator implementation) Once you learn how to use them effectively you will wonder what you did without them. Hope this helps.
|
- Chris Stehno, SCPJ
|
 |
Dirk Schreckmann
Sheriff
Joined: Dec 10, 2001
Posts: 7023
|
|
You're likely to stumble upon a few good past conversations on inner classes when trying a search on one of the Java in General forums or the OO forum. Note that the search page link is at the top right of this page.
|
[How To Ask Good Questions] [JavaRanch FAQ Wiki] [JavaRanch Radio]
|
 |
 |
|
|
subject: Advantages of inner classes
|
|
|