派生类构造函数初始化列表中的多个继承和继承数据成员

时间:2014-09-01 13:13:32

标签: c++ multiple-inheritance qualifiers

我编写了一个处理重复继承的简单程序。 我使用基类,两个子类和一个孙类

class Parent{
public: 
Parent(string Word = "", double A = 1.00, double B = 1.00): sWord(Word), dA(A), dB(B){
}


//Member function
void Operation(){
cout << dA << " + " << dB << " = " << (dA + dB) << endl;
}

protected: 
string sWord;
double dA;
double dB;
};

现在这是第一个子类

 class Child1 : public Parent{
 public: 
//Constructor with initialisation list and inherited data values from Parent class   
Child1(string Word, double A, double B , string Text = "" , double C = 0.00, double D = 0.00): Parent(Word, A, B), sText(Text), dC(C), dD(D){};


//member function
void Operation(){
cout << dA << " x " << dB << " x " << dC << " x " << dD << " = " << (dA*dB*dC*dD) << endl;}

void Average(){
cout << "Average: " << ((dA+dB+dC+dD)/4) << endl;}


protected: 
string sText;
double dC;
double dD;
};

这是第二个子类

class Child2 : public Parent {
public: 
//Constructor with explicit inherited initialisation list and inherited data values from Base Class
Child2(string Word, double A, double B, string Name = "", double E = 0.00, double F = 0.00): Parent(Word, A, B), sName(Name), dE(E), dF(F){}


//member functions
void Operation(){
cout << "( " << dA << " x " << dB << " ) - ( " << dE << " / " << dF << " )" << " = "
    << (dA*dB)-(dE/dF) << endl;}

void Average(){
cout << "Average: " << ((dA+dB+dE+dF)/4) << endl;}

protected: 
string sName;
double dE;
double dF;
};

这是处理多重继承的孙子类

 class GrandChild : public Child1, public Child2{
 public:
 //Constructor with explicitly inherited data members
 GrandChild(string Text, double C, double D,
               string Name, double E, double F): Child1(Text, C, D), Child2(Name, E, F){}


//member function
void Operation(){
cout << "Sum: " << (dC + dD + dE + dF) << endl;
}

};

在main函数中,我创建一个GrandChild对象并按如下方式初始化它:

GrandChild gObj("N\A", 24, 7, "N\A", 19, 6);

//calling the void data member function in the GrandChild class
gObj.Operation();

我得到的答案是

SUM: 0

然而答案应该是56!显然,正在使用GrandChild类的构造函数中使用的默认继承值,而不是GrandChild对象构造中包含的数据值。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

为了让代码按我的意愿工作,我做了这些修改

  //Constructor with explicitly inherited data members
GrandChild(string Word, double A, double B, string Text, double C, double D,
      string Name, double E, double F):
          Child1(Word, A, B, Text, C, D), 
              Child2(Word, A, B, Name, E, F){ }

基本上每个Child类都继承自己的单独Parent类。此Parent类的数据成员出现在子类构造函数列表中。在构造GrandChild类时,我将这些值声明为其构造函数中的参数(仅一次以避免重复)!我还包括继承的子类。

在main中我可以像这样创建一个GrandChild对象:

GrandChild gObj("n\a", 0.00, 0.00, "text", 3, 3, "text", 3, 3, 7);

使用点运算符和void成员函数,我得到了正确的答案:

gObj.Operation()

是:

sum: 12