this. in c++

in genere si legge this->metodo();
infatti se inserisco codice come questo:

class Pippo{
void A(){}
void B(){ this->A(); }
};

viene compilato correttamente :slight_smile: