親クラスのメンバー関数をpublicにしました。しかし、それでもまだ、私はエラー継承を使用して親クラスの関数を定義する方法は?
'バイク'
speedup
とspeeddown
ため
両方のクラスで宣言されていない '無効バイク:: speeddown()' メンバ関数を取得します。私は親クラスを公に継承していますが。
#include <iostream>
#include<string.h>
using namespace std;
class Bicycle
{
protected:
int speed;
char color[8];
public:
Bicycle(int, char*);
void speedup();
void speeddown();
void turnLeft();
void turnRight();
};
class MotorBike:public Bicycle
{
private:
int currentGear;
int currentFuel;
public:
MotorBike(int,char*,int,int);
};
Bicycle::Bicycle(int Speed,char* Color)
{
speed=Speed;
strcpy(color,Color);
cout<<"The bike is now moving north!"<<endl;
}
MotorBike::MotorBike(int Speed,char* Color,int CurrentGear,int CurrentFuel): Bicycle(speed,color)
{
speed=Speed;
strcpy(color,Color);
currentGear=CurrentGear;
currentFuel=CurrentFuel;
cout<<"The motorbike is now moving north!"<<endl;
}
void Bicycle::speedup()//error line
{
cout<<"Speed is increased!"<<endl;
speed+=1;
}
void Bicycle::speeddown()//error line
{
if(speed>1)
{
cout<<"Speed is decreased!"<<endl;
speed-=1;
}
else
cout<<"The bike is already at rest!"<<endl;
}
void MotorBike::speedup()//error line
{
if(currentGear==4)
cout<<"You are already at maximum speed!"<<endl;
else
{
switch(currentGear)
{
case 0:
currentGear=1;
currentFuel-=0.01;
speed+=0.25;
break;
case 1:
currentGear=2;
currentFuel-=0.02;
speed+=0.5;
break;
case 2:
currentGear=3;
currentFuel-=0.03;
speed+=0.75;
break;
case 3:
currentGear=4;
currentFuel-=0.04;
speed+=1;
break;
}
}
}
void MotorBike::speeddown()//error line
{
if(speed==1||speed>1)
speed-=1;
else
cout<<"You are already at minimum speed!"<<endl;
}
int main()
{
Bicycle B1(0,"Black");
MotorBike MB1(0,"Black",0,100);
}
私の自転車にはそれがあり、私は自転車から継承しています。 –
@AhmadShafique、true - しかしあなたはすでに定義を継承しています。子孫クラスに異なる定義を提供する場合は、**それらをオーバーライドする必要があります。 – SergeyA
はい。ありがとう! –