首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include using namespace std; class TV{ public: TV(int s=41):size(s) { }
有如下程序: #include using namespace std; class TV{ public: TV(int s=41):size(s) { }
admin
2020-07-23
23
问题
有如下程序:
#include
using namespace std;
class TV{
public:
TV(int s=41):size(s) { }
void Print() { cout<<’/’<<’N’<
void Print() const { cout<<’/’<<’C’<
void Print(int s) { cout<<’/’<<’S’<
private:
int size;
};
int main(){
TV room1,room2(54);
room1.Print();
room2.Print(54);
return 0;
}
运行时的输出结果是
选项
A、/N41/S54
B、/N41/C54
C、/C41/S54
D、/C41/C54
答案
A
解析
本题考查构造函数相关知识,本题中定义一个对象room1,执行room1.Print时执行构造函数给size赋值为41,然后执行void Print() { cout<<’/’<<’N’<
转载请注明原文地址:https://kaotiyun.com/show/i2yp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
有如下程序段:inti=10;while(1){i++;if(i==30)break;if(i%2==0)cout
定义无符号整数类为UInt,下面可以作为类UInt实例化值的是( )。
下列关于函数的描述中,错误的是()。
下列各组类型声明符中,含义相同的一组是()。
下列关于模板的表述中,正确的是
有如下类定义:classPass{staticintcount;public:Pass(){}voidshow()const;friendin
若要对Data类中重载的加法运算符成员函数进行声明,下列选项中正确的是()。
下列字符串中,不可以用做C++标识符的是()。
下面描述中错误的是( )。
随机试题
肾脏维持体内水平衡的功能。主要靠调节下列哪项活动来实现?
正锁颌是指
《风景名胜区条例》规定:在风景名胜区内进行()活动,应当经风景名胜区管理机构审核后,依照有关法律、法规的规定报有关主管部门批准。
可转换债券的特点包括债权性、可转换性和()。
在合同分析中,承包人的主要任务有( )。
债权人享有对债务人行为的撤销权,自债务人的行为发生之日起一定期限没有行使撤销权的,其撤销权消灭。该一定的期限为()。
软件需求规格说明书的作用不包括
______istheauthorofTheScarletLetter,anovelconcernedwiththelifeofPuritansinearlyAmerica.
A、Becausehewantstovisither.B、Becausehewantstodiscusshersuggestionwithher.C、Becausehewantstoofferaproposal.
A、Spaceexplorationhasseriousconsequences.B、Indiahasmanyspaceexplorationprograms.C、Thereisquitealottolearnabout
最新回复
(
0
)