When accessing a member of some class, I can use e.g.:
this->myVar = 10
or I can just write:
myVar = 10
Those two lines of code have the same meaning. The this-> is implicit in the second line. They do exactly the same thing.
this->
Thus, they perform exactly the same as well :-)