Referring to the present object
Within the body of a member function, the keyword this is a pointer to the object that is currently in use
Therefore, the expression *this is a reference to the present object
Assignment operators will therefore usually say
return *this;