Interpretation of Identifiers
l
In an inner class, the innermost
meaning of an identifier applies.
class ClosedList
{
String identity;
class Cell
{
String identity;
...
}
...
}
Inner identity
is used.
Outer identity
is used.