- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java this Keyword
In Java, the this keyword refers to the current instance of the class in which it appears. Here's an overview of its usage:
Usage:
- this is used to refer to the current object within an instance method or constructor.
- It can be used to access instance variables, instance methods, and constructors of the current object.
- Example:
class MyClass {
int x;
void setX(int x) {
this.x = x; // Assign value to instance variable
}
void display() {
System.out.println("x = " + this.x); // Access instance variable
}
}
Constructor Chaining:
- this() can be used to call one constructor from another constructor within the same class.
- This allows for constructor chaining, where one constructor can invoke another constructor with different arguments.
- Example:
class Person {
String name;
int age;
Person() {
this("John", 30); // Call parameterized constructor
}
Person(String name, int age) {
this.name = name;
this.age = age;
}
}
Return Current Object:
- this can be used to return the current object from a method.
- This is often used in method chaining, where multiple method calls are chained together on the same object.
- Example:
class MyClass {
int x;
MyClass setX(int x) {
this.x = x;
return this; // Return current object
}
}
Static Context:
- this cannot be used in a static context (static method or static block) because it refers to the current instance of the class, and static members belong to the class itself.
Summary
The this keyword in Java provides a way to reference the current object within a class, facilitating access to instance members and methods. Understanding its usage is essential for writing object-oriented Java code effectively.