When accessing a member of some class, I can use e.g.:
this->myVar = 10
or I can just write:
myVar = 10
There is no overhead. The compiler will generate the exact same code for both versions.