您的位置:首页 > 其它

第十、十一周项目-阅读程序,写出这些程序的运行结果(1)

2016-05-06 14:09 176 查看
<pre name="code" class="cpp">/*
*Copyright(c)2016,烟台大学计算机与控制工程学院
*All rights reserved
*文件名称:123.cpp
*作    者:王蕊
*完成日期:2016年5月6日
*版 本 号:v1.0
*
*问题描述:阅读程序,写出这些程序的运行结果
*/
#include<iostream>
using namespace std;
class Data
{
public:
Data(int i):x(i){cout<<"A";}
~Data(){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:
Data d1;
};
int main()
{
Derived obj(1,2);
return 0;
}
运行结果:

<img src="http://img.blog.csdn.net/20160506140154524" alt="" />
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: