This Keyword in Java.
This keyword is a reference variable that refer to a current Object.
This can be used to refer current class instance variable.
If we don't use this keyword.
class Staff{
int idno;
String name;
long salary;
Staff(int idno,String name,long salary){
Id...
akashpawal.hashnode.dev2 min read