Skip to content
Advertisement

How can I access OuterClass field from InnerClass?

I’ve been learning Java and OOP for a few weeks now.

Yesterday I learned inner class and outer class. I want to know the way to access field of outerClass from InnerClass when they have exactly same name.

Like below, It is possible to access field of outerClass from innerClass when they have different names.

JavaScript

When they have same name, I don’t know how to access both names.

JavaScript

Advertisement

Answer

Simply by doing OuterClass.this and the name of the field from the OuterClass that you want to access, for instance OuterClass.this.OuterName. In your code would look like the following:

JavaScript

When you have two fields with the same name one in the inner class and the other on the outer class (i.e., shadowing), and you try to access from the inner class that field, the compiler assumes that you want to access the field from the inner class, and ignores the other from the outer class. Otherwise, it would be impossible to choose, which variable to use.

Shadowing

If a declaration of a type (such as a member variable or a parameter name) in a particular scope (such as an inner class or a method definition) has the same name as another declaration in the enclosing scope, then the declaration shadows the declaration of the enclosing scope. You cannot refer to a shadowed declaration by its name alone.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement