The use of 'This' operator keyword is.
The use of 'This' operator keyword is It returns current object.
Keyword THIS is a reference variable in Java that refers to the current object. ... It can be used to refer instance variable of current class. It can be used to invoke or initiate current class constructor. It can be passed as an argument in the method call.
this keyword in java can be used inside the Method or constructor of Class. It(this) works as a reference to the current Object, whose Method or constructor is being invoked. This keyword can be used to refer to any member of the current object from within an instance Method or a constructor.
this keyword in C# Simple explanation of this keyword to make user understand its way of using and implementation. The this keyword refers to the current instance of the class. It can be used to access members from within constructors, instance methods, and instance accessors.