C++
Programming and Technical
Which is the parameter that is added to every non-static member function when it is called?
Read Solution (Total 1)
-
- (this) pointer is added.
this pointer contains the address of the object through
which function is called.
this->data member will give the data of the object. - 10 years agoHelpfull: Yes(5) No(1)
C++ Other Question