class_14:继承

发布时间:2024年01月21日

C++继承有点类似于c语言?结构体套用

#include <iostream>
#include <string>
using namespace std;

//基类,父类
class Vehicle{
public:
        string type;
        string contry;
        string color;
        double price;
        int    numOfWheel;
        void   run();
        void   stop();
};

//派生类,子类
class Roadster:public Vehicle{
public:
    void openTopped();
    void pdrifting();
};

int main()
{
    Roadster paoche;
    paoche.type = "保时捷";
    cout<< paoche.type<<endl;
    return 0;
}

?

文章来源:https://blog.csdn.net/qq_41962968/article/details/135734255
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。