vote up 0 vote down star

Hi,

Is it possible to access a base class function which has the same signature as that of a derived class function using a derived class object?. here's a sample of what I'm stating below..

class base1 {
public:
    void test()
    {cout<<"base1"<<endl;};
};

class der1 : public base1 {
public:
    void test()
    {cout<<"der1"<<endl;};
};

int main() {
der1 obj;
obj.test(); // How can I access the base class 'test()' here??
return 0;
}
flag
1  
Maybe 'override' tag should be removed. I am not 100% sure, but I believe the correct term is 'hide' rather than override. – dribeas Aug 19 at 10:41

2 Answers

vote up 6 vote down check

You need to fully qualify the method name as it conflicts with the inherited one.

Use obj.base1::test()

link|flag
3  
The formal term is "overrides", since the signatures match. Otherwise you'd say the derived "hides" the base class method. In either case, there is no "inherited method name" anymore. – MSalters Aug 19 at 9:34
1  
I doubt whether the correct term is 'override' or 'hides'. In the C++ standard 'override' is only used with virtual functions and in 10.2 Member name lookup, the standard says: 'A member name f in one sub-object B hides a member name f in a sub-object A if A is a base class sub-object of B.' – dribeas Aug 19 at 10:30
Thanks Arkaitz. – Karthik Aug 19 at 11:35
@MSalters: This is definitely not "overriding". That is only for virtual functions. – Richard Corden Aug 19 at 11:44
vote up 0 vote down

You cant override a method in derived class if you dint provide a virtual key word.. class base1 {public: void test() {cout<<"base1"<

so the above code is wrong;; You have to give virtual void test(); in your base class

link|flag

Your Answer

Get an OpenID
or

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