Q 33 - this keyword #38
Answered
by
HARSHITH-MV
AmjustGettingStarted
asked this question in
Q&A
-
What is the use of this keyword? |
Beta Was this translation helpful? Give feedback.
Answered by
HARSHITH-MV
Jul 21, 2025
Replies: 1 comment
-
🎯 Uses of
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AmjustGettingStarted
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🎯 Uses of
this
in JavaHere’s where
this
really shines:1. Referencing Instance Variables
If a method has parameters with the same name as instance variables,
this
clears up the confusion.2. Calling Other Constructors
Used to call another constructor in the same class.
3. Passing Current Object
You can pass the current object as an…