What is the difference between Class.this and this in Java

JavaThis

Java Problem Overview


There are two ways to reference the instance of a class within that class. For example:

class Person {
  String name;

  public void setName(String name) {
    this.name = name;
  }

  public void setName2(String name) {
    Person.this.name = name;
  }
}

One uses this.name to reference the object field, but the other uses className.this to reference the object field. What is the difference between these two references?

Java Solutions


Solution 1 - Java

In this case, they are the same. The Class.this syntax is useful when you have a non-static nested class that needs to refer to its outer class's instance.

class Person{
    String name;

    public void setName(String name){
        this.name = name;
    }
    
    class Displayer {
        String getPersonName() { 
            return Person.this.name; 
        }

    }
}

Solution 2 - Java

This syntax only becomes relevant when you have nested classes:

class Outer{
    String data = "Out!";

    public class Inner{
        String data = "In!";
        
        public String getOuterData(){
            return Outer.this.data; // will return "Out!"
        }
    }
}

Solution 3 - Java

You only need to use className.this for inner classes. If you're not using them, don't worry about it.

Solution 4 - Java

Class.this is useful to reference a not static OuterClass.

To instantiate a nonstatic InnerClass, you must first instantiate the OuterClass. Hence a nonstatic InnerClass will always have a reference of its OuterClass and all the fields and methods of OuterClass is available to the InnerClass.

public static void main(String[] args) {

		OuterClass outer_instance = new OuterClass();
		OuterClass.InnerClass inner_instance1 = outer_instance.new InnerClass();
		OuterClass.InnerClass inner_instance2 = outer_instance.new InnerClass();
        ...
}
    

In this example both Innerclass are instantiated from the same Outerclass hence they both have the same reference to the Outerclass.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser_1357View Question on Stackoverflow
Solution 1 - JavaStriplingWarriorView Answer on Stackoverflow
Solution 2 - JavaMichael BorgwardtView Answer on Stackoverflow
Solution 3 - JavaartbristolView Answer on Stackoverflow
Solution 4 - JavaHemantView Answer on Stackoverflow