“this” pointer:(special pointer)
*“this” is a special type pointer variable which contains the address of the current enable instance.
*That is it represents an object that invoke a member function.
*For example,the functin calls “S.read();” will set he pointer “this” to the address of the object S.
*This unique pointer is automatically passed to a function when it is called.
*The pointer [...]