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

admin2009-01-15  41

问题 在下面横线上填上适当的语句,完成程序。
#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 Obj();
   return 0;
}

选项

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

解析
转载请注明原文地址:https://kaotiyun.com/show/aVkp777K
0

最新回复(0)