首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
若有以下程序: #include using namespace std; class TestClass1 { public: TestClass1() { x=0: } i
若有以下程序: #include using namespace std; class TestClass1 { public: TestClass1() { x=0: } i
admin
2012-12-29
51
问题
若有以下程序:
#include
using namespace std;
class TestClass1
{
public:
TestClass1()
{
x=0:
}
int x;
};
class TestClass2:virtual public TestClass 1
{
public:
TestClass2()
{
x=10;
}
};
class TestClass3:virtual public TestClass 1
{
public:
TestClass3()
{
x=20;
}
};
class TestClass4:public TestClass2,protected TestClass3
{ };
intmain()
{
TestClass4 obj;
cout<
return 0;
}
该程序运行后的输出结果是__________。
选项
答案
20
解析
主函数中定义TestClass4的对象obj。TestClass4虽然公有继承于TestClass2,但是x在其中为私有,所以无法访问。TestClass4保护继承于TestClass3,TestClass3中的x=20为公有成员数据,对象obj可以访问这个数据,即输出为20。
转载请注明原文地址:https://kaotiyun.com/show/gMVp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下列定义数组的语句中错误的是()。
某系统结构图如下图所示(n≥5) 该系统结构图的最大扇出数是()。
对软件系统总体结构图,下面描述中错误的是()。
下列叙述中错误的是()。
以下针对相应语句的注释中,说法错误的是()。
以下叙述正确的是()。
有以下程序: #include<stdio.h> voidf(int*p,int*q); main() { intm=1,n=2,*r=&m; f(r,&n); printf("%d,%d",m,n); } vo
若a是数值类型,则逻辑表达式(a==1)||(a!=1)的值是()。
下面关于编译预处理的命令行中,正确的是()。
下列各序列中不是堆的是()。
随机试题
急性铁中毒的局部影响为
此种表现可能是何种疾病从营养学考虑缺乏下列何种元素
()是指控制、管理商业银行的一种机制或制度安排。
理论型学习风格可以选择()的培训模式。
(2016.河南)从根本上解决班级管理中存在的问题必须做到()
情绪是情感的基础,情感要通过情绪表达出来。()
下列关于生活医学常识的说法错误的是:
竞争对等法
下列选项中,属于元朝立国后的立法活动有()。
属性BorderColor的作用是
最新回复
(
0
)