在下面横线上填上适当的语句,完成程序。 #include <iostream> using namespace std; class Base { int x:

admin2010-12-16  29

问题 在下面横线上填上适当的语句,完成程序。
        #include <iostream>
        using  namespace  std;
        class Base
        {
          int x:
        public:
          Base (int i){x=i;}
          ~Base(){}
        };
        class Derived  :  public Base
       {
       public:
       ______   //完成类Derive构造函数的定义
       };
       int main (
       {
         Derived Obi;
         return  0;
        }
     在横线外应填入的语句是______。

选项

答案Derived(int i):Base(i){}

解析 本题考核派生类的构造函数。程序中,类Derived是基类Base的公有派生.在类Derived的构造函数应该包括调用基类构造函数使基类的数据成员得以初始化。
转载请注明原文地址:https://jikaoti.com/ti/fqL0FFFM
0

最新回复(0)