...二者都有weight属性,定义二者的一个友元函数addw(),计算二者的重量...
发布网友
发布时间:2024-07-03 15:38
我来回答
共2个回答
热心网友
时间:2024-07-17 23:00
这都不会,劝你还是不要学了
热心网友
时间:2024-07-17 23:00
class Car;
class Boat
{
public:
Boat(int iWeight)
{
weight = iWeight ;
}
private:
float weight ;
friend float addw(Boat boat,Car car);
};
class Car
{
public:
Car(int iWeight)
{
weight = iWeight ;
}
private:
float weight ;
friend float addw(Boat boat,Car car);
};
float addw(Boat boat,Car car)
{
return boat.weight + car.weight ;
}
void main()
{
Boat boat(5);
Car car(10);
float weight = addw(boat,car);
}
为什么不参加我的免费课
定义Boat与Car两个类,二者都有weight属性,定义二者的一个友元函数addw...
weight = iWeight ;} private:float weight ;friend float addw(Boat boat,Car car);};class Car { public:Car(int iWeight){ weight = iWeight ;} private:float weight ;friend float addw(Boat boat,Car car);};float addw(Boat boat,Car car){ return boat.weight + car.weight ;}...
...个类,二者都有weight属性,定义二者的一个友元函数getTotalWeight...
小车
...个类,二者都有weight属性,定义二者的一个友元函数totalWeight() 计算...
float totalWeight(boat a,car b); 这个函数名 跟类名重复了 而且他的两个参数是类类型的 但是在编译。改成 m_totalWeight;include "stdafx.h"#include<iostream>#include<string> using namespace std;class car;class boat{ float weight;public:boat(float a){ weight=a;}friend float y_tot...
定义BOAT和CAR 两个类,二者都有Weight属性,。定义二者的一个友元函数...
//AS3.0 class BOAT { public var weight:Number;} class CAR { public var weight:Number;}
...个类,二者都有weight属性,定义二者的一个友元函数totalWeight(),计算...
Boat(int a):weight(a){} };class Car { public:int weight;friend int totalWeight(Boat &boat, Car &car);Car(int a):weight(a){} };int totalWeight(Boat &boat, Car &car){ return boat.weight + car.weight;} void main(){ Boat boat(10);Car car(10);cout<<"The weight ...
定义Boat和Car两个类,请问怎么设置?谢谢。
{ public:explicit Car(int num);};int totalWeight(const Transport &a, const Transport &b){ return a.weight+b.weight;} Transport::~Transport(){ } Transport::Transport(int num):weight(num){ } Boat::Boat(int num):Transport(num){ } Car::Car(int num):Transport(num){ } ...
定义Boat与Car两个类,二者都有weight属性,定义二者的一个友元函数addw...
weight = iWeight ;} private:float weight ;friend float addw(Boat boat,Car car);};class Car { public:Car(int iWeight){ weight = iWeight ;} private:float weight ;friend float addw(Boat boat,Car car);};float addw(Boat boat,Car car){ return boat.weight + car.weight ;}...
定义Boat与Car两个类,二者都有weight属性,定义它们的一个友元函数totalW...
1.float totalWeight(boat a,car b); 这个函数名 跟类名重复了 而且他的两个参数是类类型的 但是在编译 到这句的时候 他不知道boat 和 car 是什么 所以这个函数名要改一下 然后放到main 函数上边 2.class totalWeight{ float totalWeight; 你这个是作为成员变量么? 只有构造函数 析构函数...