InterviewSolution
Saved Bookmarks
| 1. |
What Is The "this" Pointer? |
|
Answer» "this" is a local variable in the BODY of a non-static member function. It is a POINTER to the object for which the function was INVOKED. It cannot be used outside of a class member function body. "this" is a local variable in the body of a non-static member function. It is a pointer to the object for which the function was invoked. It cannot be used outside of a class member function body. |
|