定义Boat和Car两个类,二者都有weight属性,定义二者的一个函数totalWeight(),计算二者的重量和。 实验要求: 理解的含义及使用方法。 运行程序,并把结果写入最后一空格中。 #include
using namespace std; 1 ; //前向引用声明 class Boat { public: Boat(int iWeight): 2 // 通过初始化列表初始数据成员weight { } private: float weight ; 3 ; //声明Boat类的函数addw }; class Car { public: Car(int iWeight) { 4 ; //在构造函数体内初始数据成员weight } private: float weight ; 5 ; //声明Car类的函数addw }; float addw(Boat boat,Car car) //函数addw的实现 { return 6 ; } int main() { Boat boat(5); Car car(10); float weight = 7 ; //调用函数addw,实现求重量之和 cout<
<