Normally, I use this in constructors only.
this
I understand that it is used to identify the parameter variable (by using this.something), if i
this.something
In Java "this" is a predefined variable. If we use "this" in method that's mean we are getting the reference (address) of the currently running object. For an example.
this.age ---> age of the currently running object.