首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #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
30
问题
有如下程序:
#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全国计算机二级
相关试题推荐
设有如下关系表:则下列操作正确的是()。
已知递归函数fun的定义如下:inifun(intn){if(n
在TestClass类的定义中,对赋值运算符=进行重载。请将画线处缺失的部分补充完整。___________TestClass::operator=(constTestClass&rhs){if(this==&rhs)return
假定q所指对象的值为25,q+1所指对象的值为46,则执行“(*q)++;”语句后,q所指对象的值为___________。
关系数据库系统实现的专门关系运算包括选择、连接和__________。
自然连接(Naturaljoin)是一种特殊的等值连接,下列哪个(些)是它满足下面的条件()。I、两关系间有公共域Ⅱ、通过公共域的等值进行连接Ⅲ、可进行逆运算
执行下列程序段以后程序的输出是__________。voidadd(int&x){x++:}intmain(){inty=3:add(y);cout
阅读下面的程序:#includevoidmain(){intx;cin>>x;if(x++>5)cout
关系模型的完整性规则是对关系的某种约束条件,包括实体完整性、___________和自定义完整性。
随机试题
Inourmodernsociety,whensomethingwearsout,wethrowitawayandbuyanewone.The【C1】______isthatcountriesaroundthew
氨基酸转氨基作用的意义包括
A.鼠疫、霍乱B.艾滋病、霍乱C.麻疹、肺结核D.风疹、狂犬病E.丝虫病、流行性感冒属于乙类传染病的是
具有明显镇痛作用的药物是
内部审计职能应向()提供独立保证,并支持其及高级管理层推动有效的治理流程及银行的长期稳健。
面对金融危机的冲击,我国实施积极的财政政策和适度宽松的货币政策,采取一系列政策措施,全力保持经济平稳较快发展。下列举措体现积极的财政政策的是()。
Whatdoesthemanthinkofthegovernment’spresentproposalaboutbuildingmorepowerstationsinthecountry?
In1844,CharlesStun,aBritishsoldierandcolonialadministrator,madeanexpedition______asupposedinlandsea;hispartyp
Todaywe’regoingtodiscussthe【L1】______oftheworld’spopulation,whichisan【L2】______worldwide.First,I’llfocusontwo
Thoseouttodemolisholdbuildingsoftenarguethatafactorywillbringprosperitytoatownandpr【66】employmentforitspeop
最新回复
(
0
)