首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有以下程序,在横线应添加( )。 #include<iostream> using narnespace std; class TestClass { public: TestClass int n){
有以下程序,在横线应添加( )。 #include<iostream> using narnespace std; class TestClass { public: TestClass int n){
admin
2020-11-11
30
问题
有以下程序,在横线应添加( )。
#include<iostream>
using narnespace std;
class TestClass
{
public:
TestClass int n){number=n;}
______∥拷贝构造函数
~TestClass (){}
private:
int number;
};
TestClass fun(TestClass p)
{
TestClass temp(p);
return temp;
}
int main()
{
TestClass obj1(10),obj2(0);
TestClass obj3(obj1);
obj2=fun(obj3);
return 0;
}
选项
A、TestClass(TestClass &other){number=other,number;}
B、TestClass(TestClass other){number=other.number;}
C、TestClass(TestClms &other){number;}
D、TestClass(&other){number=other.number;}
答案
A
解析
拷贝构造函数也是构造函数,但它只有一个参数,这个参数是本类的对象,即other,所以赋值操作将本类的参数other.number赋值给number;而且采用对象的引用的形式,也就是&other。
转载请注明原文地址:https://kaotiyun.com/show/svyp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序#include<iostream>usingnamespacestd;classA{public:virtualvoidfunc1(){cout<<’’A1’’;}voidf
软件生命周期是指()。
有如下模板声明:template<typenameT1,typenameT2>ClaSSA;下列声明中,与上述声明不等价的是()。
有如下程序:#include<iostream>usingnamespacestd;classMedia{public:voidName();voidShow();protec
有如下两个类定义:classAA{};classBB{AAv1,*v2;BBv3;int*v4;};其中有一个成员变量的定义是错误的,这个变量是()。
运算符重载时不需要保持的性质是()。
有如下语句序列:ifstreaminfile("DATA.DAT");if(infile.good())cout<<"A";else{COUt<<"B";ofstreamoutfile("DATA.DA
下面不属于C++的预定义的流对象是()。
下列代码段中声明了3个类:classPerson{};classStudent:publicPerson{};classUndergraduate:Student{};下列关于这些类之间关系的描述中,错误的是
下列关于运算符重载的叙述中,错误的是()。
随机试题
试验人员不能用()填写、修改原始记录。
制冷装置中常用的温度继电器,是以()作用的原理来推动其触点通断的。
有关X线对比度的叙述,错误的是
关于TFⅡD的叙述,下列哪项是正确的
增加水泥土墙挡土能力的技术措施有( )。
物料需求计划的特点包括()。
每道题包含两套图形和可供选择的4个图形。这两套图形具有某种相似性,也存在某种差异。要求你从四个选项中选择最适合取代问号的一个。正确的答案应不仅使两套图形表现出最大的相似性,而且使第二套图形也表现出自己的特征。
现行PC机中普遍采用的ISA总线(AT总线),其I/O插槽能够支持的存储器地址线有( )。
EconomicReforminChinaMoreUSsinologistshaveexpressedconfidenceinChina’seconomicreformandtheprospectsforChi
A、Cutapumpkinintopiecesandputthemintoafridge.B、Haveafreshpumpkincookedandstoreit.C、Storethewholepumpkinin
最新回复
(
0
)