首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
若有以下程序: #include <iostream> using namespace std; class Base { public: Base() { x=0; } int x; }; class Derived
若有以下程序: #include <iostream> using namespace std; class Base { public: Base() { x=0; } int x; }; class Derived
admin
2013-05-30
38
问题
若有以下程序:
#include <iostream>
using namespace std;
class Base
{
public:
Base()
{
x=0;
}
int x;
};
class Derived1: virtual public Base
{
public:
Derived1()
{
x=10;
}
};
class Derived2: virtual public Base
{
public:
Derived2()
{
x=20;
}
};
class Derived: public Derived1, protected Derived2
{ };
int main()
{
Derived obj;
cout<<obj.x<<end1;
return 0;
}
该程序运行后的输出结果是【 】。
选项
答案
20
解析
转载请注明原文地址:https://kaotiyun.com/show/PUNp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
下面程序用于计算矩阵的两条对角线上的元素之和。补充下列语句,实现该功能。#include<iostream.h>voidmain(){inta[3],[3]={9,8,7,6,5,4,3,2,1};ints
若有:intx=25,y=14,z=19;则在计算表达式x++<=25&&y--<=2&&++2<=18后,z的值为【】。
设有如下程序段:charstr[]="World":char*ptr=str;执行上面的程序段后,*(ptr+5)的值为______。
阅读以下程序,写出程序运行后的输出结果是______。#include<iostream.h>voidmain(){chara[]={’H’,’e’,’1’,’1’,’o’,’\0’};inti,j;
下面程序段中的错误语句是______。classM{inti;public:void~AA(int);AA*p;voidAA();voidAA(intx){i
下列程序的输出结果是【】。#include<iostream>usingnamespacestd;template<typenameT>Ttotal(T*data){Ts=0;while(*data){
假定一个一维数组的定义为“chara[8],b;”若把该数组最后一个元素赋值给b应该采取的表达式为:【】。
表达式8&3的结果是【】。
随机试题
患儿,女,3岁。颈部肿物约1cm,稍高起于皮肤,圆形,边界不甚清楚,皮表正常。肿块呈青蓝色,质软,有压缩性,压迫时消失,去压后即复原。最可能的诊断为
大量不保留灌肠的适应证不包括
对增感率大小无直接影响的是
唇淋巴的叙述中。错误的是
下列规范性法律文件属于狭义的法律的是()。
工业机器人的编程方式有()。
在对文物修缮、保养及迁移时,应严格遵守的一条法定原则是()。
一个长方体形状的盒子长、宽、高分别为20厘米、8/厘米和2厘米,现在要用一张纸将其六个面完全包裹起来,要求从纸上剪下的部分不得用作贴补,请问这张纸的大小可能是下列哪一个?( )
为提高移栽树苗的成活率,常采用根部带土和去掉部分枝叶的措施,其目的是:
TheBritishshowagreatloveforthecountrysideanditisreallyniceandbeautiful.Alotofpeopledream(梦想)aboutlivingi
最新回复
(
0
)