首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
若有以下程序: #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
31
问题
若有以下程序:
#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的值为【】。
若有inta[3][4]={1,2,3,4,5,6,7,8,9,10,11,12};int(*q)[3]=a,*pa[0];则能够正确表示数组元素a[1][2]的表达式是______。
在软件测试中,白盒测试方法是通过分析程序的_______来设计测试用例的方法。
按照“先进先出”原则组织数据的数据结构是()。
在关系数据库模型中,通常可以把外码所在的关系称为()。
下面程序的输出结果是【】。#defineMIN(a,b)(((a)<(b))?a:b)#include<iostream.h>voidmain(){intx=3,y=5;cout<<MIN(x,y)<<end1;}
如果表达式x=y*z中的“*”是作为成员函数重的运算符,采用运算符函数调用格式,该表达式还可以表示为【】。
将以下程序写成三日运算表达式是【】。if(a>b)max=a;elsemax=b;
表达式8&3的结果是【】。
随机试题
患者,女,24岁,孕20周,因起居不慎而跌仆,继而腰酸,腹痛下坠,阴道出血,脉滑无力
一般情况前牙桩冠根面应制备成
下列剂型发挥疗效最快的是( )。
曲线线路轨距加宽限度为半径
下列关于经济增长的说法错误的是()。
2008年度“房地产开发企业施工房屋面积”最大的三个地区的面积之和比2007年度该三个地区之和增加了()。
有—类攻击可以确定通信的位置和通信主机的身份,还可以观察交换信息的频度和长度。这类攻击称为【】。
Packyourbags.Holdthemail.It’stimetoturnyourdreamvacationintoarealtrip."Ihaven’tseenabuyer’smarketliket
Hello,everyone.Itisagreatpleasuretohaveyouasassistantstohelp【B1】________theparty.Iamsendingaroundaformfory
Thedesireoflivingaluxuriouslife______himtorobthebank.
最新回复
(
0
)