首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include using namespace std; class test{ private: int a; public: test(){cout
有如下程序: #include using namespace std; class test{ private: int a; public: test(){cout
admin
2021-06-10
15
问题
有如下程序:
#include
using namespace std;
class test{
private:
int a;
public:
test(){cout<<’’constructor’’<
test(int a){cout<
test(const test&_test){
a=_test.a:
cout<<’’copy constructor’’<
}
~test(){cout<<’’destructor’’<
};
int main(){
test A(3);
return 0;
}
执行这个程序的输出结果是( )。
选项
A、3
B、constructor
destructor
C、copy constructor
desiructor
D、3
destructor
答案
D
解析
本题考查默认构造函数和带参数的构造函数以及析构函数,本题中定义了一个对象A(3),对象带着参数,所以执行带参数的构造函数,输出3,然后执行析构函数,输出destructor。所以本题答案为D。
转载请注明原文地址:https://kaotiyun.com/show/yNfp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序:#includeusingnamespacestd;intmain(){int*p;*p=9:cout
下列关于虚基类的描述中,错误的是()。
下列有关运算符重载的叙述中,正确的是()。
有如下程序:#inc1ude<iostream>usingnamespacestd;c1assBase{intx:public;Base{intw=0};x(n){cout<<n;}
下列关于函数模板的描述中,正确的是()。
有如下类定义和变量定义:c1assA{public:A(){data=0;}~A(){}intGetData()const{retumdata;}voidSetData(int
有如下程序:#includeusingnamespacestd;classPart{public:Part(intx=0):val(x){cout<<val;}-Part(){cout<<val;
已知类IMS中两个成员函数的声明为“voidlisten()const;”与“voidspeak();”,另有两个对象的定义为“IMSobj1,”与“constIMSobj2;”,则下列语句中,产生编译错误的是()。
在数据库设计中,将E一R图转换成关系数据模型的过程属于()。
下列选项中,正确的C++表达式是()。
随机试题
窜货是指经销商置经销协议和制造商长期利益于不顾,进行产品跨地区_____。
Thereareseveralmeansofmasscommunication.Thenewspaperisone.Televisionis______.
ICU(intensivecareunit)
肝病日久,两胁胀满疼痛,并见舌质瘀斑,瘀点。其病机是:产后大出血,继则冷汗淋漓,甚则晕厥。其病机是:
下列关于支托凹的预备,说法错误的是
在建设工程进度调整的系统过程中,当分析进度偏差产生的原因之后,首先需要()。
假设有两种收益完全正相关的风险证券组成的资产组合,那么最小方差资产组合的标准差为( )。
中国舰队护航商船抵达亚丁湾,请问亚丁湾在下列选项中哪个海域内?()
电子工业增长景气指数最高的年月份为()。根据上图,下列说法正确的是()。
Atrulyinformeddinerwouldchoosearestaurantbasedonthequalityofthemenuandthechef’sexperience.Thediscerninginve
最新回复
(
0
)