首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Person{ public: Person(string
有如下程序: #include #include using namespace std; class Person{ public: Person(string
admin
2021-09-05
5
问题
有如下程序:
#include
#include
using namespace std;
class Person{
public:
Person(string n):name(n) { }
~Person() { cout<<’P’; }
private:
string name;
};
class Date{
public:
Date(int y=2012,int m=12,int d=21):year(y),month(m),day(d) { }
~Date() { cout<<’D’; }
private:
int year,month,day;
};
class Student:public Person{
public:
Student(string n,int y,int m,int d,char c)
:birthday(y,m,d),sex(c),Person(n) { }
~Student() { cout<<’S’; }
private:
Date birthday;
char sex;
};
int main(){
Student stu1("Zhang",1990,10,1,’F’);
return 0;
}
运行时的输出结果是
选项
A、S
B、SP
C、SPD
D、SDP
答案
D
解析
本题考查派生类的析构函数,派生类的析构函数执行顺序为先构造的后析构,后构造的先析构,所以执行Student stu1("Zhang",1990,10,1,’F’);时,依次执行person、Date 、Student构造函数,然后依次执行Student、Date 、person的析构函数,所以输出为SDP,D选项正确。
转载请注明原文地址:https://kaotiyun.com/show/nb5p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列链表中,其逻辑结构属于非线性结构的是()。
对于通过公有继承定义的派生类,若其成员函数可以直接访问基类的某个成员,说明该基类成员的访问权限是()。
有如下程序:#includeusingnamespacestd;classMusic{public:voidsetTitle(char*str){strcpy(title,str);)pr
下列关于指针的运算中,()是非法的。
下列关于运算符重载的叙述中,错误的是()。
下列函数原型声明中,错误的是()。
某二叉树共有7个结点,其中叶子结点只有1个,则该二叉树的深度为(假设根结点在第1层)
内聚性是对模块功能强度的衡量,下列选项中,内聚性较弱的是()。
已知i=5,j=0,下列各式中运算结果为j=6的表达式是()。
下面对软件测试描述错误的是
随机试题
闪光细胞主要见于
高温、高压下的氢对金属有(),易造成氢腐蚀。
某企业现有注册资本800万元,累计盈余公积金500万元,现在该企业准备用盈余公积金转增资本金,则最多可以转增的数额为( )万元。
下列关于项目经营机构分析的说法,错误的是()。
缺乏共情的表现或后果主要表现为()。
请找出有歧义的一句是()。
下列关于宋朝法律形式的表述,正确的是()。
积分∫sec4xdx=________.
VolunteersWanted!Therehavebeenmanycases【K9】________byresidentsofstraydogsgoingthroughanopenwindowandeatingthe
A、Studentscanlearnaboutdifferentkindsofjobs.B、Theycanlearnskillsandgainvaluableexperience.C、Theycanmeetimport
最新回复
(
0
)