首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include #include using namespace std; class TV{ public: TV(int s=41):size(
有如下程序: #include #include using namespace std; class TV{ public: TV(int s=41):size(
admin
2019-03-05
27
问题
有如下程序:
#include
#include
using namespace std;
class TV{
public:
TV(int s=41):size(s) { cout<<’N’; }
TV(const TV& t):size(t.size) { cout<<’C’; }
~TV() { cout<<’D’; }
void Print() const { cout<
private:
int size;
};
int main(){
TV room1(41),room2(room1);
TV *room3=new TV(54);
room3->Print();
delete room3;
return 0;
}
运行时的输出结果是
选项
A、NC54
B、NCN54D
C、NNN54DDD
D、NCN54DDD
答案
D
解析
本题考查构造函数相关知识,本题中定义一个对象room1,输出N,定义room2时输出C,定义room3时输出N,然后执行room3.Print时,输出54,最后执行三个析构函数输出DDD,所以答案为D。
转载请注明原文地址:https://kaotiyun.com/show/LvAp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
以下程序中,错误的行为①#include<iostream.h>②classA③{④public:⑤intn=2;⑥A(intval){cout<<val
下面关于break语句的描述中,不正确的是
在下面横线上填上适当的语句,完成程序。#include<iostream>usingnamespacestd;classBase{intx:
根据注释内容在空白处填写适当内容。classLocation{private:intX,Y;public:voidinit(intinitX,intinitY);in
在下面的函数声明中,存在着语法错误的是
下列描述中错误的是()。
某二叉树中度为2的结点有18个,则该二又树中有______个叶子结点
下列选项中,作为是数据库系统的核心的是()。
下列叙述中,正确的选项是()。
随机试题
如何牢牢把握全面深化改革的正确方向?
下列哪些生效法律文书,可以由审判庭移送执行机构执行?()
国有资产折股时,不得低估作价并折股,折股比率不得低于( )。
若流动比率大于1,则下列说法正确的是()。
李某2013年3月取得的下列收入中,应缴纳个人所得税的是()。
①为了储存足够的水分,多肉植物的根、茎、叶部进化成富有大量浆液的组织②多肉植物来自高山、沙漠等气候干燥的环境③不用太多浇水和打理,它们就能存活④以帮助它们在干旱恶劣的气候环境中得以生存⑤因此,它们非常适合室内种植
InKualaLumpurcranesstretchoutwardamongthegleamingtowersinaperpetualconstructionboompoweredbyforeigninvestment.
关于Python的列表,以下选项中描述错误的是
ThepassagetellsusthatasachildgrowsupAccordingtothepassage,theabilitiesachildhasinheritedfromhisparents
"MomentofReckoning":U.S.CitiesBurnRecyclablesafterChinaBansImportsA)TheconscientiouscitizensofPhiladelphiacont
最新回复
(
0
)