首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include<iostream> using namespace std; class Boat; class Car{ public: Car(int i):weight(i){}
有如下程序: #include<iostream> using namespace std; class Boat; class Car{ public: Car(int i):weight(i){}
admin
2019-06-12
32
问题
有如下程序:
#include<iostream>
using namespace std;
class Boat;
class Car{
public:
Car(int i):weight(i){}
Mend int Total(const Car&c,const Boat&b);//①
private:
int weight;
};
class Boat{
public:
Boat(int i):weight(i){}
Mend int Total(const Car&c,const Boat&b);
private:
int weight;
};
int Total(const Car&c,const Boat&b){ //②
return c.weight+b.weight;
}
int main(){
Car c(10);
Boat b(8);
cout<<’’The total weight is’’<<Total(c,b)<<endl;//③
return 0;
}
下列关于程序的描述中,正确的是( )。
选项
A、程序编译正确
B、程序编译时语句①出错
C、程序编译时语句②出错
D、程序编译时语句③出错
答案
A
解析
程序中定义了类Car和类Boat,在两个类中分别定义他们的构造函数和友元函数friend。程序在VC6.0中编译通过。
转载请注明原文地址:https://kaotiyun.com/show/LL8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
从程序设计的方法和技术的发展角度来说,程序设计主要经历了结构化设计和__________的程序设计阶段。
有如下函数模板:templateTcast(Uu){returnu;}其功能是将U类型数据转换为T类型数据。已知i为int型变量,下列对模板函数cast的调用中正确的是()。
有如下类声明:classMyBASE{intk=public:voidsct(intn){k=n;}intget()const{returnk;}};
有如下程序:#includeusingnamespacestd:classTestClass1{public:TestClass1(){cout
有以下程序:#includeusingnamespacestd;inta;intfun();intmain(){externinta;intb;
以下程序的正确运行结果是()。#includeimfun(int);voidmain(){inta=2,i;for(i=0;i
以下程序的输出结果是()。#includeusingnamespacestd;voidfun(char**q){++q;cout
()使一个函数可以定义成对许多不同数据类型完成同一个任务。
关系模型的完整性规则是对关系的某种约束条件,包括实体完整性、___________和自定义完整性。
随机试题
关于环境细菌污染监测,下列说法错误的是
前列腺增生症的重要症状是
男,45岁,间断腹痛、腹泻3年,排便4~5次/天,便质不成形,无脓血、黏液,服用小檗碱、氟哌酸等后腹泻可稍缓解,近半月症状加重,大便7~8次/天,大便常规正常。本例诊断应首先考虑
工程咨询公司的投标班子在参加工程咨询项目投标初期,其准备工作应包含()。
财政政策工具是财政政策主体所选择的用以达到政策目标的各种政策手段。通常把财政政策工具分为()。
甲公司将一台生产设备抵押给乙公司,以担保其所欠债务10万元,双方办理了抵押登记手续。后因生产设备出现故障,甲公司聘请丙公司上门修理。欠付修理费1万元。后因甲公司无力偿还债务,甲、乙公司将该生产设备委托拍卖,得款8万元。根据规定,下列说法正确的是()
可降低血浆同型半胱氨酸浓度,有助于预防老年人动脉粥样硬化的一组维生素是()。[辽宁省2007年11月四级真题]
astute service providers realize that the continued support of legacy X.25 and asynchronous network element using separate opera
Naturalselectiondescribesthebiologicalprocessinwhichthedifferencesofindividualswithinapopulationinfluencestheir
Bothsocialfactorsandthedevelopmentof【L31】________havebeenimportantinthegrowthoftourism.Itwouldappea
最新回复
(
0
)