my scenario is as follows::
class Parent { public: int x; } class Child:public Parent { int x; // Same name as Parent\'s \"x\". void Func() { this.x = Paren
Almost got it:
this->x = Parent::x;
this is a pointer.
this