c++ virtual inheritance(C++虚继承)
问题描述
问题:
class Base {
public:
Base(Base* pParent);
/* implements basic stuff */
};
class A : virtual public Base {
public:
A(A* pParent) : Base(pParent) {}
/* ... */
};
class B : virtual public Base {
public:
B(B* pParent) : Base(pParent) {}
/* ... */
};
class C : public A, public B {
public:
C(C* pParent) : A(pParent), B(pParent) {} // - Compilation error here
/* ... */
};
在给定的位置,gcc 抱怨它无法匹配 Base() 的函数调用,即默认构造函数.但是 C 并没有直接从 Base 继承,而是通过 A 和 B 继承.那么为什么 gcc 会在这里抱怨?
At the position given, gcc complains that it cannot match function call to Base(), i.e. the default constructor. But C doesn't inherit directly from Base, only through A and B. So why does gcc complain here?
想法?TIA/罗布
推荐答案
virtual
基类的特殊之处在于它们由最派生的类初始化,而不是由继承自虚拟基地.潜在的多个初始化器中的哪一个是初始化一个基类的正确选择?
virtual
base classes are special in that they are initialized by the most derived class and not by any intermediate base classes that inherits from the virtual base. Which of the potential multiple initializers would the correct choice for initializing the one base?
如果正在构造的最派生类没有在其成员初始化列表中列出它,则虚拟基类将使用其必须存在且可访问的默认构造函数进行初始化.
If the most derived class being constructed does not list it in its member initalization list then the virtual base class is initialized with its default constructor which must exist and be accessible.
请注意,允许在构造函数的初始值设定项列表中使用虚拟基标识符,即使它不是相关类的直接基.
Note that a virtual base identifier is allowed to be use in a constructor's initializer list even if it is not a direct base of the class in question.
这篇关于C++虚继承的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++虚继承


基础教程推荐
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 这个宏可以转换成函数吗? 2022-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 常量变量在标题中不起作用 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01