I have a Java program that looks like this.
public class LocalScreen {
public void onMake() {
aFuncCall(LocalScreen.this, oneString, twoString);
}
}
What does LocalScreen.this
means in aFuncCall
?
I have a Java program that looks like this.
public class LocalScreen {
public void onMake() {
aFuncCall(LocalScreen.this, oneString, twoString);
}
}
What does LocalScreen.this
means in aFuncCall
?
LocalScreen.this
refers tothis
of the enclosing class.This example should explain it:
Output:
This post has been rewritten as an article here.
I know what is your confusion.I am encounter the problem just now, it should have special scene to distinguish them.
You can see the diff between
THIS.this
andthis
in new THIS operation by hashcode( .## )test in scala console :
THIS.this
always point to outer THIS class which is refer by val x,butthis
is beyond to anonymous new operation.Class.this
allows access to instance of the outer class. See the following example.Then you will get.
It means the
this
instance of the outerLocalScreen
class.Writing
this
without a qualifier will return the instance of the inner class that the call is inside of.The compiler takes the code and does something like this with it:
As you can see, when the compiler takes an inner class it converts it to an outer class (this was a design decision made a LONG time ago so that VMs did not need to be changed to understand inner classes).
When a non-static inner class is made it needs a reference to the parent so that it can call methods/access variables of the outer class.
The this inside of what was the inner class is not the proper type, you need to gain access to the outer class to get the right type for calling the onMake method.