首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
若有以下程序: #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
34
问题
若有以下程序:
#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://jikaoti.com/ti/BNE0FFFM
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
以下程序段的输出结果是______。inti;intx[3][3]={1,2,3,4,5,6,7,8,9};for(i=0;i<3;i++)cout<<x[i][2-i]<<‘’;
阅读以下程序,写出程序运行后的输出结果是______。#include<iostream.h>voidmain(){chara[]={’H’,’e’,’1’,’1’,’o’,’\0’};inti,j;
在软件测试中,白盒测试方法是通过分析程序的_______来设计测试用例的方法。
若有以下定义和语句:inta[10]={1,2,3,4,5,6,7,8,9,10},*ia=a;则不能正确表示a数组元素的表达式是______。
有以下程序,程序运行的结果是______。#include<iostream.h>#include<string.h>voidmain(){charx[]="C++",y[10]="C++";
在关系数据库模型中,通常可以把外码所在的关系称为()。
下列程序的输出结果是【】。#include<iostream>usingnamespacestd;template<typenameT>Ttotal(T*data){Ts=0;while(*data){
在C++语言中每个类都有一个【】指针,该指针指向正在调用成员函数的对象。
将以下程序写成三日运算表达式是【】。if(a>b)max=a;elsemax=b;
随机试题
患者痔疮手术后2~3天未排便,不宜采用下列哪些措施()。
蛋白质三级结构指的是
A、知母B、香加皮C、丹参D、紫香E、郁李仁含有强心苷的中药是()。
论述缔约过失责任。[中山大学2010年研]
下列选项中,()不是社会评价的特点。
下列各项中,不能构成交易性金融资产入账价值的有()。
试论法治原则及其对法治建设的指导意义。
数据模型按不同的应用层次分为三种类型,它们是______数据模型、逻辑数据模型和物理数据模型。
TheUnitedStatesistryingtodealwiththeseriousproblemsbroughtonbytheenergycrisis.
AftertheviolentearthquakethatshookLosAngelesin1994,earthquakescientistshadgoodnewstoreport;Thedamageanddeath
最新回复
(
0
)