What is “this” keyword in java?
Ask by Anonymous User
Updated 22 Sep 2020
Into the instance method or a constructor, this is a reference to the current object — the object whose method or constructor is being called.
We can send to any member of the current object from within an instance method or a constructor by using this.