Table of Contents
In this tutorial, we will discuss the concept of “This” keyword in Java programming language.
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.
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
Multiply two numbers in Java using scanner| 5 different ways In this article, we will…
5 Different ways to Divide two numbers in Java using scanner In this article, we…
Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…
10 ways to subtract two numbers in Java In this article, we will discuss the…
Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…
How to Divide two numbers in Java| 5 different ways In this article, we will…
This website uses cookies.