首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
若有以下程序: #include <iostream> using namespace std; class Base { public: Base() { x=0;
若有以下程序: #include <iostream> using namespace std; class Base { public: Base() { x=0;
admin
2010-03-29
63
问题
若有以下程序: #include <iostream> using namespace std; class Base { public: Base() { x=0; } int x; }; class Derivedl : virtual public Base { public: Derivedl() { x=10; } }; class Derived2 : virtual public Base { public: Derived2() { x=20; } }; class Derived : public Derivedl,protected Derived2 { }; int main () { Derived obj; cout<<obj.x<<end1; return 0; } 该程序运行后的输出结果是( )。
选项
A、10
B、20
C、30
D、0
答案
2
解析
本题中,虽然Derived1和Derived2都是由共同的基类x派生而来的,但由于引入了虚基类,使得它们分别对应基类的不同副本。这时数据成员x只存在一份拷贝,不论在类Derived1修改,还是在类Derived2中修改,都是直接对这惟一拷贝进行操作。本题程序执行语句“Derived obj”时,就会先调用虚基类Base的构造函数,使得x=O,然后执行类Derived1的构造函数使得x=10,再执行类Derived2的构造函数,使得x=20。最后输出x的值为20。
转载请注明原文地址:https://kaotiyun.com/show/VFjp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有以下程序#includestructSTU{charname[9];charsex;intscore[2];};voidf(structSTUa[]){structSTUb={"zhao",’m’
有以下程序#includemain(){inta=0,b=0,c=0,d=0;(++a||++b)?++c:++d;printf("%d,%d,%d,%d\n",a,b,c,d);}程序的运行结果是()。
有以下程序#includeintfun(){staticintx=1;main(){inti,s=1;x+=1;for(i=1;i
下列叙述中正确的是()。
下面不属于结构化程序设计原则的是
有以下函数:intfun(char*x,char*y){intn=0;while((*x==*y)&&*x!=’\0’){x++;y++;n++:}returnn:}函数的功能是()。
以下选项中非法的C语言字符常量是
设fp已定义,执行语句fp=fopen(“file”,“w”);后,以下针对文本文件file操作叙述的选项中正确的是
在快速排序法中,每经过一次数据交换(或移动)后()。
若有定义:intw[3][5];则以下不能正确表示该数组元素的表达式是
随机试题
市场劳动供给曲线的形状是
StudentLoansFederalStudentAidisanofficeproviding(provide)studentloansforhighereducation.TheU.S.governmentknows
患者,女性,25岁。咳嗽少痰,鼻干咽燥,喉痒时连声作呛,头痛微寒,身热,舌苔薄黄。其治法宜
下列关于水泥基渗透结晶型防水涂料特点的说法,错误的是()。
关于旅游景区景点管理,下列说法不正确的是()。
“Smartbuilding”isatermthatisverypopularamongopinion-formers,butwhatexactlyisitandhowcarlitbe【C1】______toredu
已知随机变量X的概率密度为f(x)=,求(1)常数a,b的值;(2)。
Manyweeks.
Thedecisionaboutwheretolivewhilestudyingatthetertiarylevelcanhaveamajorinfluenceonastudent’schancesofsucce
Itwasoncethoughtthatairpollutionaffectedonlytheareaimmediatelyaroundlargecitieswithfactoriesandheavyautomobil
最新回复
(
0
)