c++ should you use this-> to call methods inside of other methods code example
Example: c++ call method in same class
class Example{
void A(){
//do something
}
void B(){
this->A();
// or
A();
}
}
class Example{
void A(){
//do something
}
void B(){
this->A();
// or
A();
}
}