There can be a lot of usage of this keyword. In java, this is a reference variable that refers to the current object.
Usage of this keyword
Here is given the 6 usage of this keyword. |
- this keyword can be used to refer current class instance variable.
- this() can be used to invoke current class constructor.
- this keyword can be used to invoke current class method (implicitly)
- this can be passed as an argument in the method call.
- this can be passed as argument in the constructor call.
- this keyword can also be used to return the current class instance.
|
Suggestion:If you are beginner to java, lookup only two usage of this keyword. |
1) The this keyword can be used to refer current class instance variable.
If there is ambiguity between the instance variable and parameter, this keyword resolves the problem of ambiguity. |
Understanding the problem without this keyword
Let's understand the problem if we don't use this keyword by the example given below: |
- class student{
- int id;
- String name;
-
- student(int id,String name){
- id = id;
- name = name;
- }
- void display(){System.out.println(id+" "+name);}
-
- public static void main(String args[]){
- student s1 = new student(111,"Karan");
- student s2 = new student(321,"Aryan");
- s1.display();
- s2.display();
- }
- }
In the above example, parameter (formal arguments) and instance variables are same that is why we are using this keyword to distinguish between local variable and instance variable. |
Solution of the above problem by this keyword
-
- class Student{
- int id;
- String name;
-
- student(int id,String name){
- this.id = id;
- this.name = name;
- }
- void display(){System.out.println(id+" "+name);}
- public static void main(String args[]){
- Student s1 = new Student(111,"Karan");
- Student s2 = new Student(222,"Aryan");
- s1.display();
- s2.display();
- }
- }
Output111 Karan
222 Aryan
If local variables(formal arguments) and instance variables are different, there is no need to use this keyword like in the following program: |
Program where this keyword is not required
- class Student{
- int id;
- String name;
-
- student(int i,String n){
- id = i;
- name = n;
- }
- void display(){System.out.println(id+" "+name);}
- public static void main(String args[]){
- Student e1 = new Student(111,"karan");
- Student e2 = new Student(222,"Aryan");
- e1.display();
- e2.display();
- }
- }
Output:111 Karan
222 Aryan
2) this() can be used to invoked current class constructor.
The this() constructor call can be used to invoke the current class constructor (constructor chaining). This approach is better if you have many constructors in the class and want to reuse that constructor.
-
-
- class Student{
- int id;
- String name;
- Student (){System.out.println("default constructor is invoked");}
-
- Student(int id,String name){
- this ();
- this.id = id;
- this.name = name;
- }
- void display(){System.out.println(id+" "+name);}
-
- public static void main(String args[]){
- Student e1 = new Student(111,"karan");
- Student e2 = new Student(222,"Aryan");
- e1.display();
- e2.display();
- }
- }
Output:
default constructor is invoked
default constructor is invoked
111 Karan
222 Aryan
Where to use this() constructor call?
The this() constructor call should be used to reuse the constructor in the constructor. It maintains the chain between the constructors i.e. it is used for constructor chaining. Let's see the example given below that displays the actual use of this keyword. |
- class Student{
- int id;
- String name;
- String city;
-
- Student(int id,String name){
- this.id = id;
- this.name = name;
- }
- Student(int id,String name,String city){
- this(id,name);
- this.city=city;
- }
- void display(){System.out.println(id+" "+name+" "+city);}
-
- public static void main(String args[]){
- Student e1 = new Student(111,"karan");
- Student e2 = new Student(222,"Aryan","delhi");
- e1.display();
- e2.display();
- }
- }
Output:111 Karan null
222 Aryan delhi
Rule: Call to this() must be the first statement in constructor.
- class Student{
- int id;
- String name;
- Student (){System.out.println("default constructor is invoked");}
-
- Student(int id,String name){
- id = id;
- name = name;
- this ();
- }
- void display(){System.out.println(id+" "+name);}
-
- public static void main(String args[]){
- Student e1 = new Student(111,"karan");
- Student e2 = new Student(222,"Aryan");
- e1.display();
- e2.display();
- }
- }
Output:Compile Time Error
3)The this keyword can be used to invoke current class method (implicitly).
You may invoke the method of the current class by using the this keyword. If you don't use the this keyword, compiler automatically adds this keyword while invoking the method. Let's see the example |
- class S{
- void m(){
- System.out.println("method is invoked");
- }
- void n(){
- this.m();
- }
- void p(){
- n();
- }
- public static void main(String args[]){
- S s1 = new S();
- s1.p();
- }
- }
4) this keyword can be passed as an argument in the method.
The this keyword can also be passed as an argument in the method. It is mainly used in the event handling. Let's see the example: |
- class S{
- void m(S obj){
- System.out.println("method is invoked");
- }
- void p(){
- m(this);
- }
-
- public static void main(String args[]){
- S s1 = new S();
- s1.p();
- }
- }
Application of this that can be passed as an argument:
In event handling (or) in a situation where we have to provide reference of a class to another one. |
5) The this keyword can be passed as argument in the constructor call.
We can pass the this keyword in the constructor also. It is useful if we have to use one object in multiple classes. Let's see the example: |
- class B{
- A obj;
- B(A obj){
- this.obj=obj;
- }
- void display(){
- System.out.println(obj.data);
- }
- }
-
- class A{
- int data=10;
- A(){
- B b=new B(this);
- b.display();
- }
- public static void main(String args[]){
- A a=new A();
- }
- }
6) The this keyword can be used to return current class instance.
We can return the this keyword as an statement from the method. In such case, return type of the method must be the class type (non-primitive). Let's see the example: |
Syntax of this that can be returned as a statement
- return_type method_name(){
- return this;
- }
Example of this keyword that you return as a statement from the method
- class A{
- A getA(){
- return this;
- }
- void msg(){System.out.println("Hello java");}
- }
-
- class Test{
- public static void main(String args[]){
- new A().getA().msg();
- }
- }
Proving this keyword
Let's prove that this keyword refers to the current class instance variable. In this program, we are printing the reference variable and this, output of both variables are same. |
- class A{
- void m(){
- System.out.println(this);
- }
-
- public static void main(String args[]){
- A obj=new A();
- System.out.println(obj);
-
- obj.m();
- }
- }
Output:A@13d9c02
A@13d9c02
0 comments:
Post a Comment