The inner class is the class defined inside a class, and the inner class can be declared as public, private, protected. If the inner class defined as private and protected, can outer class access the members of inner class? and can inner class access members of outer class?
|
Yes. These qualifiers will only affect the visibility of the inner class in classes that derive from the outer class.
Yes, including the ones declared |
|||
|
|
In general, you can (access private fields on inner classes and vice-versa). The following code compiles under Eclipse:
That said, you can configure your IDE/compiler to treat accesses to such fields as errors (in Eclipse this setting is called "Access to non-accessible member of an enclosing type", under Preferences -> Java -> Compiler -> Error/Warnings -> Code Style) |
|||
|
|
(Joshua Bloch, from the book Effective Java.) As for your questions: it is very easy to test by yourself. But the answer is yes (even for That is, very much as one would expect =). |
||||
|
|