vote up 1 vote down star
1

When a subclass overrides a baseclass's method, all of the baseclass's overloads are not available from the subclass. In order to use them there should be added a using BaseClass::Method; line in the subclass.

Is there a quick way to inheirt the baseclass's overloads for ALL of the overridden methods? (not needing to explicitly specify using ... for each method)

flag

46% accept rate

2 Answers

vote up 5 vote down check

No. It's only possible with a using declaration and that only works with the individual methods.

link|flag
1  
I want to emphasize using declaration. This is the keyword to search for more details, as using is used in several different contexts in C++. – gimpf Oct 1 at 12:04
vote up 0 vote down

You can access base class's method , by explicitly specifying scope of the class when you want to call method ..

e.g

class Base{ public: void foo(){} };

class Derived : public Base { public: void foo(int){} };

int main() { Derived d; d.Base::foo(); // like this }

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.