鱼C论坛

 找回密码
 立即注册
查看: 1146|回复: 3

[已解决]继承中的权限问题 这里报错了

[复制链接]
发表于 2020-12-16 21:57:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include <iostream>
using namespace std;

class Car{
public:
        Car(int wh,float we):wheel(wh),weigh(we){}
        void Getinfo(){
                cout<<"车轮数:"<<wheel<<" 车重:"<<weigh<<"t"<<endl;
        }
protected:
        int wheel;
        float weigh;
};

class LCar:private Car{
public:
        LCar(int wh,float we,int peop):wheel(wh),weigh(we),people_allow(peop){}                                          //这里报错了 说没有weigh和wheel成员变量  不是从Car继承了吗。。。
        void Getinfo(){
                cout<<"车轮数:"<<wheel<<" 车重:"<<weigh<<"t 载客量:"<<people_allow<<"人"<<endl;
        }
private:
        int people_allow;
        
};

class Truck:private Car{
public:
        Truck(int wh,float we,int peop,float we_al):wheel(wh),weigh(we),people_allow(peop),weigh_allow(we_al){}                                     //这里也报错了 同样的原因
        void Getinfo(){
                cout<<"车轮数:"<<wheel<<" 车重:"<<weigh<<"t 载客量:"<<people_allow<<"人 载重量:"<<weigh_allow<<"t "<<endl;
        }
private:
        int people_allow;
        float weigh_allow;
        
};
int main(){
        Truck T(4,21,4,50);
        T.Getinfo()
} 
最佳答案
2020-12-17 08:42:12
这样写
#include <iostream>
using namespace std;

class Car{
public:
        Car(int wh,float we):wheel(wh),weigh(we){}
        void Getinfo(){
                cout<<"车轮数:"<<wheel<<" 车重:"<<weigh<<"t"<<endl;
        }
protected:
        int wheel;
        float weigh;
};

class LCar:private Car{
public:
        LCar(int wh,float we,int peop):Car(wh,we),people_allow(peop){}                                          //这里报错了 说没有weigh和wheel成员变量  不是从Car继承了吗。。。
        void Getinfo(){
                cout<<"车轮数:"<<wheel<<" 车重:"<<weigh<<"t 载客量:"<<people_allow<<"人"<<endl;
        }
private:
        int people_allow;
        
};

class Truck:private Car{
public:
        Truck(int wh,float we,int peop,float we_al):Car(wh,we),people_allow(peop),weigh_allow(we_al){}                                     //这里也报错了 同样的原因
        void Getinfo(){
                cout<<"车轮数:"<<wheel<<" 车重:"<<weigh<<"t 载客量:"<<people_allow<<"人 载重量:"<<weigh_allow<<"t "<<endl;
        }
private:
        int people_allow;
        float weigh_allow;
        
};
int main(){
        Truck T(4,21,4,50);
        T.Getinfo();
        return 0;
} 
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-17 08:42:12 | 显示全部楼层    本楼为最佳答案   
这样写
#include <iostream>
using namespace std;

class Car{
public:
        Car(int wh,float we):wheel(wh),weigh(we){}
        void Getinfo(){
                cout<<"车轮数:"<<wheel<<" 车重:"<<weigh<<"t"<<endl;
        }
protected:
        int wheel;
        float weigh;
};

class LCar:private Car{
public:
        LCar(int wh,float we,int peop):Car(wh,we),people_allow(peop){}                                          //这里报错了 说没有weigh和wheel成员变量  不是从Car继承了吗。。。
        void Getinfo(){
                cout<<"车轮数:"<<wheel<<" 车重:"<<weigh<<"t 载客量:"<<people_allow<<"人"<<endl;
        }
private:
        int people_allow;
        
};

class Truck:private Car{
public:
        Truck(int wh,float we,int peop,float we_al):Car(wh,we),people_allow(peop),weigh_allow(we_al){}                                     //这里也报错了 同样的原因
        void Getinfo(){
                cout<<"车轮数:"<<wheel<<" 车重:"<<weigh<<"t 载客量:"<<people_allow<<"人 载重量:"<<weigh_allow<<"t "<<endl;
        }
private:
        int people_allow;
        float weigh_allow;
        
};
int main(){
        Truck T(4,21,4,50);
        T.Getinfo();
        return 0;
} 
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-12-17 10:33:10 | 显示全部楼层
用public继承应该没问题
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-12-17 17:43:17 | 显示全部楼层

谢谢啦 那就是说基类构造函数给基类成员变量赋值只能调用基类的构造函数是吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 10:01

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表