Java: Class.this Java: Class.this java java

Java: Class.this


LocalScreen.this refers to this of the enclosing class.

This example should explain it:

public class LocalScreen {        public void method() {                new Runnable() {            public void run() {                // Prints "An anonymous Runnable"                System.out.println(this.toString());                                // Prints "A LocalScreen object"                System.out.println(LocalScreen.this.toString());                                // Won't compile! 'this' is a Runnable!                onMake(this);                                // Compiles! Refers to enclosing object                onMake(LocalScreen.this);            }                        public String toString() {                return "An anonymous Runnable!";            }        }.run();    }        public String toString() { return "A LocalScreen object";  }        public void onMake(LocalScreen ls) { /* ... */ }        public static void main(String[] args) {        new LocalScreen().method();    }}

Output:

An anonymous Runnable!A LocalScreen object

This post has been rewritten as an article here.


It means the this instance of the outer LocalScreen 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:

public class LocalScreen {    public void method()     {        new LocalScreen$1(this).run;    }    public String toString()     {        return "A LocalScreen object";     }    public void onMake(LocalScreen ls) { /* ... */ }    public static void main(String[] args)     {        new LocalScreen().method();    }}class LocalScreen$1     extends Runnable{    final LocalScreen $this;    LocalScreen$1(LocalScreen $this)    {        this.$this = $this;    }    public void run()     {        // Prints "An anonymous Runnable"        System.out.println(this.toString());        // Prints "A LocalScreen object"        System.out.println($this.toString());        // Won't compile! 'this' is a Runnable!        //onMake(this);        // Compiles! Refers to enclosing object        $this.onMake($this);    }    public String toString()     {        return "An anonymous Runnable!";    }}

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.