3

为什么这个打印23作为输出;我的期望是33。有人可以对此有所了解。

struct A {
    virtual void f() {cout << "1";}
};

/* Private inheritance */
struct B : private A {
    void f(int x = 0) {cout << "2";}
};

struct C : B {
    void f(){cout << "3";}
};

int main() {
    C obj;
    B &ref = obj;
    ref.f();
    obj.f();
}
4

1 回答 1

6

struct 中的f(int x = 0)方法B不与Anor Cstruct 的f()方法共享签名。

于 2013-02-18T06:12:01.113 回答