您的位置:首页 > 其它

第十周项目训练1

2016-05-19 08:45 281 查看
/*

*Copyright (c) 2016,烟台大学计算机学院

*All rights reserved.

*文件名称 :

*作 者 : 王玙璠

*完成日期 : 2016年5月19号

*版 本 号 : v1.0

*

问题描述:

阅读程序,写出执行结果

程序:

#include<iostream>
using namespace std;
class Date
{
public:
Date(int i):x(i){cout<<"A";}
~Date(){cout<<"B";}
private:
int x;
};
class Base
{
public:
Base(int i):b1(i){cout<<"C";}
~Base(){cout<<"D";}
private:
int b1;
};
class Derived:public Base
{
public:
Derived(int i,int j):Base(i),d1(j){cout<<"E";}
~Derived(){cout<<"F";}
private:
Date d1;
};
int main()
{
Derived obj(1,2);
return 0;
}


运行结果应为:

CAEFBD

运行测试结果:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: