7
기본 클래스의 가상 함수를 재정의하는 경우이를 호출 할 수 있습니까?
수업이 Foo있고 Bar다음과 같이 설정 했다고 가정 해보십시오 . class Foo { public: int x; virtual void printStuff() { std::cout << x << std::endl; } }; class Bar : public Foo { public: int y; void printStuff() { // I would like to call Foo.printStuff() here... std::cout << y << …