填空题

在派生类中,对类对象成员,基类成员和非类对象成员的初始化程序是 【7】 。

【参考答案】

基类成员 类对象成员 非类对象成员
<上一题 目录 下一题>
热门 试题

填空题
请在如下程序中的空格处填写正确的语句; #include<iostream> using namespaee std; c]ass Base public: void fun( )cout<< Base fun <<endl; ; class Derived:public Base public: void fun( ) ______ 调用基类的函数fun( ) cout<< Derived fun <<endl; ;
填空题
在下面程序的横线处填上______,使程序执行后的输出结果为1 2005。 #include<iostream.h> using namespace std; class Date Public: Date(int m=1,int y=0): month(m),year(y) void Print()cout<<month<< <<year<<end1; ______operator+(const Date&d1,const Date&d2); private: int month, year; ; Date operator+(const Date&d1,const Date&d2) int year,month; year=d1.year+d2.year; month=d1.month+d2.month; year+=(month-1)/12; month=(month-1)%12+1; return Date(month,year); void main() Date d1(3,2004),d2,d3(10); d2=d3+d1; d2.Print();
相关试题
  • 如果一个类中定义了成员对象,则该类的对象...
  • 以下程序的输出结果是 【7】 。 #incl...
  • 函数重载要求重载的函数必须有和原函数一样...
  • 数据库设计包括概念设计、______和物...
  • 为了便于对照检查,测试用例应由输入数据和...