首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class Person{ public: Person(string
有如下程序: #include #include using namespace std; class Person{ public: Person(string
admin
2015-06-27
28
问题
有如下程序:
#include
#include
using namespace std;
class Person{
public:
Person(string n):name(n) { cout<<’P’; }
private:
string name;
};
class Date{
public:
Date(int y=2012,int m=12,int d=21):year(y),month(m),day(d) { 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) { cout<<’S’; }
private:
Date birthday;
char sex;
};
int main(){
Student stu1("Zhang",1990,10,1,’F’);
return 0;
}
运行时的输出结果是
选项
A、S
B、PS
C、DPS
D、PDS
答案
D
解析
本题考查派生类的构造函数,派生类的构造函数初始化时按照参数列表初始化顺序,所以先初始化Person(n),输出P,然后依次输出D和S,答案为D选项。
转载请注明原文地址:https://kaotiyun.com/show/SDNp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序:#include<iostream>usingnamespacestd;classBase{protected:inti;public:intj;};classDeri
设有如下关系表:RST__________________ABCABCABC112313112223223313则下列操作中正确的是______。
类MyClass的定义如下:classMyClass{pubfic:MyClass(){value=0;}SetVariable(inti){value=i;)private:intvalue;
C++语言中的每条基本语句以【】作为结束符,每条复合语句以【】作为结束符。
在下面程序中,编译出现错误的语句是______。classB{public:B(){f();}virtualvoidf()=0;};
若磁盘上已存在某个文本文件,其全路径文件名为d:\shiti\tes.txt,下列语句中不能打开该文件的是()。
算法的空间复杂度是指()。
已知doublevar;是文件F1.CPP中的一个全局变量定义,若文件F2.CPP中的某个函数也需要访问,则在文件F2.CPP中var应说明为【】。
在C++中,打开一个文件,就是将这个文件与一个()建立关联;关闭一个文件,就是取消这种关联。
随机试题
室外型火灾警报器比室内型火灾警报器具有更高的(),可以在室外环境或半开放场所中保持正常运行。
HenryFord,thefamousU.S.inventorandcarmanufacturer,oncesaid,"ThebusinessofAmericaisbusiness."Bythishemeant
假设开发法中专业费估算的计费基础通常为
下列关于工程变更价款的确定程序的论述,正确的是()。
支票的出票人签发空头支票,持票人有权要求出票人进行赔偿,赔偿方法是()。
以下关于行业所处的生命周期阶段的说法,正确的有()。I.太阳能、某些遗传工程等行业正处于行业生命周期的幼稚期Ⅱ.电子信息、生物医药等行业已进入成熟期阶段Ⅲ.石油冶炼、超级市场等行业处于行业生命周期的成长期
新《义务教育法》规定,实施义务教育,不收取()
一棵二叉树共有25个结点,其中5个是叶子结点,则度为1的结点数为()。
AnothermilestoneonthejourneytowardsdigitalcashwaspassedonNovember13th.Thatdatemarkedtheemergencefrombeta-test
GreekMythologyGreekmythologyconcernstheancientGreekgodsandheroes,the___【T1】oftheworld,andtheoriginsandsig
最新回复
(
0
)