Tag: this keyword
-
this keyword
this keyword: In Java, this is a keyword which is used to refer current object of a class. we can it to refer any member of the class. It means we can access any instance variable and method by using this keyword(it can be used to differentiate local and instance variables in the class). The main purpose of using this keyword…