首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include using namespace std; class A { public: static int a; void init() { a = 1; } A(int a = 2) { init(); a++
有如下程序: #include using namespace std; class A { public: static int a; void init() { a = 1; } A(int a = 2) { init(); a++
admin
2019-07-10
58
问题
有如下程序:
#include
using namespace std;
class A {
public:
static int a;
void init() { a = 1; }
A(int a = 2) { init(); a++; }
};
int A::a = 0;
A obj;
int main()
{
cout << obj.a;
return 0;
}
运行时输出的结果是( )。
选项
A、0
B、1
C、2
D、3
答案
B
解析
本题考查构造函数,本题中对类中的a数据成员先是赋值为0,当定义了对象obj时,执行构造函数,将a的值变为了1,所以输出1。
转载请注明原文地址:https://kaotiyun.com/show/CP8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序:#include<iostream>usingnamespacestd;classMyClass{public:MyClass(){++count;}~MyClass(){--count;}
有如下程序:#include<iostream>usingnamespacestd;classTestClass{private;charc;public;TestClass(cha
在结构化程序设计中,模块划分的原则是A)各模块应包括尽量多的功能B)各模块的规模应尽量大C)各模块之间的联系应尽量紧密D)模块内具有高内聚度,模块间具有低耦合度
下面程序的输出结果是()。#include<iostream>usingnamespacestd;template<classT>Tmax(Tx,Ty){return(x>=y?x:y
下面程序的运算结果为()。#include<iostream>usingnamespace~td;inti;intfun(){staticinti=10;return++i;
下面程序的运行结果为#include<iostream.h>voidmain(){chara=’3’;switch(a){case’3’:cout<<"3"
有以下程序:#include<iostream>usingnamespacestd;{public:TestClass(intr1,intr2){R1=r1;R2=r2;}
随机试题
设f(x,y)在点(a,b)处有偏导数,则=()
举例说明语言艺术(文学)的种类。
Morethanfortythousandreaderstoldusthattheylookedforinclosefriendships,whattheyexpected【C1】______friends,whatth
A.紧急手术,引流腹腔B.胆囊造影术C.肝叶切除术D.紧急手术解除梗阻,减压并引流胆道E.胆总管—空肠吻合术急性化脓性梗阻性胆管炎的治疗应是()
在中医著作里,又将瘿病称为
汽车等机动车辆排放出的尾气在太阳紫外线的照射下可形成二次污染物。一天中污染物污染最为严重的时间一般为
东汉时出现了全部石造的建筑物,如()。
好意施惠是指当事人之间无意设定法律上的权利义务关系,而由当事人一方基于良好的道德风尚实施的使另一方受恩惠的关系。根据上述定义,下列不属于好意施惠关系的是:
结构化程序设计中,下面对goto语句使用描述正确的是
一个汉字的国标码需用()。
最新回复
(
0
)