Within a member function of a class in C++, does it make a difference, if I use this->dataMember or just dataMember? What is considered better
this->dataMember
dataMember
If a template function makes a call to a member function such that the call does not depend on any template parameters, this-> can be used to help the compiler as an alternative to MyUtopicClass::vin().
this->
MyUtopicClass::vin()