this keyword in java

The "this" keyword is used to refer to the current instance of a class.

Example:

  1. public class Employee
  2.  {
  3.     int age;
  4.     public Employee(int age)
  5.     {
  6.        this.age = age;
  7.     }
  8.  
  9. private void displayEmployee(){
  10.     System.out.println("Employee's age : " + this.age);
  11. }
  12.  
  13. public void printEmployee(){
  14.     this.displayEmployee();
  15.  }
  16. }
public class Employee
 {
    int age;
    public Employee(int age)
    {
       this.age = age;
    }

private void displayEmployee(){
    System.out.println("Employee's age : " + this.age);
}

public void printEmployee(){
    this.displayEmployee();
 }
}


this.age accesses a variable of the current instance of Employee class.

this.displayEmployee() invokes a method of the current instance of the Employee class.

Note: "this" keyword is optional to use but it increases the code readability.

In some cases where local variable and instance variable name are same, "this" keyword is mandatory to refer to the current instance’s variable otherwise local variable gets the precedence.

Example:

  1. public class Employee
  2.  {
  3.      int age;
  4.      public Employee(int age)
  5.      {
  6.        age = age;
  7.      }
  8.  
  9.     public void displayEmployee(){
  10.        System.out.println("Employee's age : " + age);
  11.      }
  12. }
public class Employee
 {
     int age;
     public Employee(int age)
     {
       age = age;
     }

    public void displayEmployee(){
       System.out.println("Employee's age : " + age);
     }
}


In the above example, since we are not using 'this' in the constructor,
In assignment age=age, both left and right side ‘age’ are considered as local variable and hence no value will be assigned to instance variable.

  1. public class Employee
  2.  {
  3.      int age;
  4.      public Employee(int age)
  5.      {
  6.         this.age = age;
  7.      }
  8.  
  9.      private void displayEmployee(){
  10.         System.out.println("Employee's age : " + this.age);
  11.      }
  12. }
public class Employee
 {
     int age;
     public Employee(int age)
     {
        this.age = age;
     }

     private void displayEmployee(){
        System.out.println("Employee's age : " + this.age);
     }
}


In the above example, since we have used 'this' in the constructor,
In assignment age=age, left side ‘age’ accessed using 'this' refers to instance variable and right side ‘age‘ refers to local variable and hence local variable value will be assigned to instance variable.

So 'this' keyword always refers to the current instance of the class and should be used when a reference will be ambiguous as stated above.

About the Author

Founder of javainsimpleway.com
I love Java and open source technologies and very much passionate about software development.
I like to share my knowledge with others especially on technology 🙂
I have given all the examples as simple as possible to understand for the beginners.
All the code posted on my blog is developed,compiled and tested in my development environment.
If you find any mistakes or bugs, Please drop an email to kb.knowledge.sharing@gmail.com

Connect with me on Facebook for more updates

Share this article on