This keyword in Java programming language

This keyword in Java programming language

In this tutorial, we will discuss the concept of “This” keyword in Java programming language.

This keyword

 Using this with a field

“This” keyword is used as a reference to the current object that is an instance of the current class.

“This” reference to the current object is useful in situations where a local variable hides or shadows a field with the same name.

The base class was written like this
public class base
{
public int m=0;
public int n=0;
// constructor
public base (int x, int y)
             {
    m=x;
    n=y;
               }
}
The base class was written like this
public class base
{
public int m=0;
public int n=0;
// constructor
public base (int x, int y)
             {
    this.m=x;
   this. n=y;
               }
}
The base class was written like this



Program 1

public class thisis{
int id;
String name;

thisis(int id,String name){
id=id;                                          // not use this keyword
name=name;                             // not use this keyword
}
void display()
{
System.out.println(id+” “+name);
}

public static void main(String args[]){

thisis obj=new thisis(7,”vannan”);
thisis obj1=new thisis(8,”varathan”);
obj.display();
obj1.display();
}

}


output – to int – 0
             – to String – null    

program 2

public class thisis{
int id;
String name;

thisis(int id,String name){   // this is constructor
this.id=id;                            // this keyword index current constructor
this.name=name;
}
void display()
{
System.out.println(id+” “+name);
}

public static void main(String args[]){

thisis obj=new thisis(7,”dffffff”);
thisis obj1=new thisis(8,”dff9888″);
obj.display();
obj1.display();
}

}


Example 3

Nlo need the this keyword

class School
{
int id;
String name;
School(int id1,String name1)
{
name=name1;
id=id1;
}
void show()
{
System.out.println(id+” “+name);
}

public static void main(String args[])
{
School s1=new School(111,”vannan”);
School s2=new School(222,”varathan”);
s1.show();
s2.show();
}
}

this keyword was used to invoke current class method.

 

Example

class mystudent
{
void showresult()
{
System.out.println(“you got very good pass”);
}

void marks()
{
showresult();
}
void display()
{
showresult();
}

public static void main (String args[])
{
mystudent s=new mystudent();
s.display();
}
}

 

 

 

Related post

Final keyword in Java

Super keyword in Java

Karmehavannan

Recent Posts

Multiply two numbers in Java using scanner| 5 different ways

Multiply two numbers in Java using scanner| 5 different ways In this article, we will…

3 months ago

5 different ways to Divide two numbers in Java using scanner

5 Different ways to Divide two numbers in Java using scanner In this article, we…

3 months ago

Learn 8 Ways to Subtract Two Numbers Using Methods in Java

Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…

4 months ago

10 ways to subtract two numbers in Java

10 ways to subtract two numbers in Java In this article, we will discuss the…

4 months ago

Java Code Examples – Multiply Two Numbers in 5 Easy Ways

Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…

4 months ago

How to Divide two numbers in Java| 5 different ways

How to Divide two numbers in Java| 5 different ways In this article, we will…

4 months ago

This website uses cookies.