首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include using namespace std; class XB { int a; public: s
有如下程序: #include using namespace std; class XB { int a; public: s
admin
2020-07-23
21
问题
有如下程序:
#include
using namespace std;
class XB {
int a;
public:
static int b;
XB(int aa):a(aa) { b++; }
~XB() { b--; }
int get() {return a;}
};
int XB::b=0;
int main() {
XB d(2);
int n=d.get()+XB(3).get();
cout<
return 0;
}
运行时的输出结果是
选项
A、5
B、6
C、7
D、8
答案
B
解析
本题考查类的构造函数和静态数据成员,题目中定义了类的静态数据成员b,当执行定义对象d(2)和XB(3).get()时执行构造函数,构造函数执行b++,所以b最终为2,而d.get()为2,最终结果为6,B选项正确。
转载请注明原文地址:https://kaotiyun.com/show/H2yp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下的类声明:#includeusingnamespacestd;classAA{public:virtualvoiddisp(){cout
在C++中,用来取代C中的预处理宏函数的是
有如下程序:#includeusingnamespacestd;classB{public:virtualvoidshow(){cout
下列关于运算符重载的描述中,错误的是
有如下程序:#includeusingnamespacestd;classBase{public:Base(){cout
有如下程序:#includeusingnamespacestd;voidfun(inti){cout
有如下程序:#includeusingnamespacestd;voidfun(int&x,int&y){y=y+x;x=y/4;
下列关于模板的表述中,错误的是
层次型、网状型和关系型数据库划分原则是( )。
下面关于数据库三级模式结构的叙述中,正确的是()。
随机试题
第一届中国人民政治协商会议召开于()
护理的对象是
国际标准化组织(ISO)和国际咨询工程师联合会(FIDIC)推荐采用国际通用的()循环方法进行过程控制。
无代价抵偿货物是指进出口货物在海关放行前,因残损、短少、品质不良或者规格不符等原因,由进出口货物的发货人、承运人或保险公司免费补偿或者更换的,与原货物相同或与合同规定相符的货物。()
旅行社招揽、接待旅游者,应当制作和保存完整的业务档案,保存期最低为()年。
根据记忆内容的性质可以将记忆分为陈述性记忆和()。
列举中国近代史五种史料,并简评之。(南京大学2008年中国近现代史复试真题)
Aslongaspeoplehavelookedupatthenightsky,theyhavewonderedwhetherhumanityisaloneintheuniverse.Ofplacesclose
在外部设备中,扫描仪属于
TheUnitedStatesiswell-knownforits【C1】______ofmajorhigherhighwaysdesignedtohelpa【C2】______getfromoneplacetoan
最新回复
(
0
)