0 votes
in JAVA by
What are the main uses of this keyword?

1 Answer

0 votes
by

There are the following uses of this keyword.

this can be used to refer to the current class instance variable.

this can be used to invoke current class method (implicitly)

this() can be used to invoke the current class constructor.

this can be passed as an argument in the method call.

this can be passed as an argument in the constructor call.

this can be used to return the current class instance from the method.

Related questions

0 votes
asked Dec 7, 2020 in JAVA by SakshiSharma
+1 vote
asked May 12, 2021 in JAVA by rajeshsharma
...