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 << …