Derived classes and function hiding

前端 未结 0 2002
醉梦人生
醉梦人生 2021-01-24 23:49

Consider the following example:

class A {
    public:
    int foo() { return 1; }
    int bar() { return foo(); }
};

class B : public A {
    int foo() { return          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题