+ 2
Please someone explain me about 'this' keyword in JAVA
4 Respuestas
+ 7
Check this....
https://www.javatpoint.com/this-keyword
+ 2
Thanks man
That was a great help.
+ 2
This keyword is used to refer the current in object ..when we use the (.) operator on this keyword then we can access the member variables of current object.
This keyword can also be used to call one constructor from another constructor of the same class.