this
Pointerthis
.
this
is always the first parameter.
this
is a pointer to the object that invoked the member function.
Function(parameter);
is equivalent to writing
(*this).Function(parameter);
or
this->Function(parameter);
This page was last modified on Oct 26, 2000
URL: http://people.hsc.edu/faculty-staff/robbk/Coms262/Lectures/TheThisPointer.html