车类

2022/6/29 6:20:12

本文主要是介绍车类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

function.h #include"members.h" #include<iostream> using namespace std;   Car::Car(double w, double s) {     weight = w;     speed = s; }
Car::Car (const Car &p) {     weight = p.weight;     speed = p.speed; }
void Car::print() {     cout<< "重量为" << weight << endl;     cout<< "速度为" << speed << endl; }     main.cpp #include"members.h" #include"function.h" #include<iostream>
using namespace std;
int main() {     Car car_3(1000.23, 3000.4);     car_3.print();     Car car_1(100.1, 100.3);     Car car_2(car_1);     car_1.print();     return 0; }   members.h // 类的定义 // 定义数据和成员函数 #ifndef  COMPLEX_H_ #define  COMPLEX_H_   #include<iostream> using namespace std;   class Car {     private:         double weight;         double speed;
    public:         Car (double, double);         Car (const Car &p);         void print(); }; #endif

这篇关于车类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程