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
using "this->" is better (you are sure it's the members) but it's doesn't make a difference