虚拟继承构造函数选择

时间:2018-04-26 18:08:27

标签: c++ c++11 inheritance virtual-inheritance

为什么打印20000?代码在继承序列中一直显式调用特定的基础构造函数,但忽略指定的构造函数并使用默认构造函数。

#include <iostream>

struct Car
{
  Car() : price(20000) {}
  Car(double b) : price(b*1.1) {}
  double price;
};

struct Toyota : public virtual Car
{
  Toyota(double b) : Car(b) {}
};

struct Prius : public Toyota
{
  Prius(double b) : Toyota(b)  {}
};

int main(int argc, char** argv)
{
  Prius p(30000);

  std::cout << p.price << std::endl;

  return 0;
}

1 个答案:

答案 0 :(得分:10)

虚拟基类必须由派生程度最高的类构造;考虑到钻石形状层次结构的可能性,这是唯一有道理的方法。

在您的情况下,Prius使用其默认构造函数构造Car。如果你想要其他构造函数,你必须明确地调用它,就像在

中一样
Prius(double b) : Car(b), Toyota(b) {}