In C++, this
is a pointer which refers to the current object/instance. Inside every member function, the this
keyword is a pointer that holds the address of the current implicit object.
But, I am very curious: How does C++ set the this
keyword? Like, how is it defined in C++? How does C++ determine the appropriate object for the this
pointer?