C++ inheritance and function overriding

后端 未结 3 2025
情话喂你
情话喂你 2020-11-29 07:37

In C++, will a member function of a base class be overridden by its derived class function of the same name, even if its prototype (parameters\' count, type and cons

相关标签:
3条回答
  • 2020-11-29 08:01

    Classes are scopes and a class scope is nested in its parent. You have exactly the same behavior with other nested scopes (namespaces, blocks).

    What happen is that when the name lookup searches for the definition of a name, it looks in the current namespace, then in the englobing namespace and so on until it find one definition; the search then stop (that's without taking into account the complications introduced by argument dependent name lookup -- the part of the rules which allows to use a function defined in the namespace of one of its argument).

    0 讨论(0)
  • 2020-11-29 08:09

    The term used to describe this is "hiding", rather than "overriding". A member of a derived class will, by default, make any members of base classes with the same name inaccessible, whether or not they have the same signature. If you want to access the base class members, you can pull them into the derived class with a using declaration. In this case, add the following to class Y:

    using X::spray;
    
    0 讨论(0)
  • 2020-11-29 08:18

    That's so called 'hiding': Y::spray hides X::spray. Add using directive:

    class Y : public X
    {
    public:
       using X::spray;
       // ...
    };
    
    0 讨论(0)
提交回复
热议问题