- 2

What is mean by this?

23rd May 2017, 12:35 PM
Sree ram
Sree ram - avatar
2 Réponses
0
you probably mean the keyword this it is used to point to the instance of the class where its used in
23rd May 2017, 1:23 PM
LDK
LDK - avatar
0
"this" is a keyword in java, used to reference variable to current object. it can be used for following ways. 1. To refer current class instance variable 2. To invoke current class method/cunstructor. 3. To pass as an argument to method/constructor 4. To return current class instance
23rd May 2017, 2:30 PM
Sravan Kumar Koneti