c – 多重继承模糊基类

c – 多重继承模糊基类,第1张

概述考虑代码 struct Base{};struct Derived: public Base{};struct A: public Base{};struct B: public A, public Base{};struct C: public A, public Derived{}; // why no ambiguity here?int main() {} 编译器(g 5 考虑代码
struct Base{};struct Derived: public Base{};struct A: public Base{};struct B: public A,public Base{};struct C: public A,public Derived{}; // why no ambiguity here?int main() {}

编译器(g 5.1)警告

warning: direct base 'Base' inaccessible in 'B' due to ambiguity struct B: public A,public Base{};

我明白这一点,基地在B.

>为什么C没有警告? C和C都不继承,它们都继承自Base?
>为什么添加虚拟

struct Derived: virtual Base{};

结果现在B和C发出警告,生活在Wandbox

warning: direct base 'Base' inaccessible in 'B' due to ambiguity struct B: public A,public Base{};

warning: direct base 'Base' inaccessible in 'C' due to ambiguity struct C: public A,public Derived{};

解决方法 在B中,不可能直接引用继承的Base子对象的成员.考虑:
struct Base {    int x;};struct B: public A,public Base {    voID foo() {        int& x1 = A::x; // OK        int& x2 = x; // ambiguous        // no way to refer to the x in the direct base    }};

在C这不是一个问题.可以使用限定名称来引用这两个x:

struct C: public A,public Derived {    voID foo() {        int& x1 = A::x; // OK        int& x2 = Derived::x; // OK    }};

所以你得到的警告是一个直接的基地也是通过另一个路径继承的唯一有用的.

对于你的第二个问题,我无法用g -5.1重现Coliru上的C的警告.

总结

以上是内存溢出为你收集整理的c – 多重继承模糊基类全部内容,希望文章能够帮你解决c – 多重继承模糊基类所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1253627.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存