首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #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
35
问题
有如下程序:
#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全国计算机二级
相关试题推荐
软件测试分为白箱(盒)测试和黑箱(盒)测试。等价类划分法属于__________测试。
类MyClass的定义如下:classMyClass{public:MyClass(){Value=0.)SetVariable(inti){value=i;}private:int
有如下类声明:classMyBASE{intk=public:voidsct(intn){k=n;}intget()const{returnk;}};
自然连接(Naturaljoin)是一种特殊的等值连接,下列哪个(些)是它满足下面的条件()。I、两关系间有公共域Ⅱ、通过公共域的等值进行连接Ⅲ、可进行逆运算
执行下列程序段以后程序的输出是__________。voidadd(int&x){x++:}intmain(){inty=3:add(y);cout
软件开发环境是全面支持软件开发全过程的__________集合。
在声明派生类时,如果不显示地给出继承方式,缺省的类继承方式是私有继承private。已知有如下类定义:classTestClass{protected:voidfun(){}};classTe
下列选项中,作为是数据库系统的核心的是()。
任何关系数据库系统都应该支持()。I、实体完整性约束Ⅱ、参照完整性约束Ⅲ、用户自定义完整性约束
随机试题
一个测验能测到预先想测的知识和能力的程度,这里指的是测验的()
明确提出新生儿脐风是因断脐不慎,破伤风是一种疾病的著作是
A.青霉素钠B.头孢羟氨苄C.氨曲南D.替莫西林E.氨苄西林是单环β-内酰胺类抗生素
既属于五体,又属于奇恒之腑的是
下列哪些法规只报全国人大常委会备案?()
对企业在销售商品的同时授予给客户的奖励积分,下列会计处理中,错误的是()。
设函数,在(一∞,+∞)内连续,则c=____________.
Takemuchofwhatyouknowabouthowthebestexecutivesmakedecisions.Now,forgetit.Forinstance,weall"know"thattight
Thereisanincreasingdemandfor______.Thespecialistis______.
Industryhasgreatinfluenceoneveryaspectofthepeopleintheworld.Theindustrialsocietieshavebeenextremelyproductive
最新回复
(
0
)