📌  相关文章
📜  以下哪些对 ohai() 的调用是有效的 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:44.797000             🧑  作者: Mango

代码示例2
struct A { void ohai() {} };

struct B: protected A {};

struct C: private A { friend int main();};

struct D: B { void test() { ohai();} };

struct E: C { void test() { ohai();} };

int main() {
    A().ohai();
    B().ohai();
    C().ohai();
    D().ohai();    
    return 0;
}