猿问

请帮忙看一下程序有什么问题!提示第4行出了问题!


#include "fighterplane.h"

#include <iostream>

using namespace std;

FighterPlane::FighterPlane(string code):plane(code)

{

    //ctor

}


void FighterPlane::takeoff()


{

    cout <<"FighterPlane--takeoff"<<endl;

}

void FighterPlane::land()

{

    cout <<"FighterPlane--land"<<endl;

}



慕圣2268672
浏览 1430回答 2
2回答

onemoo

我看到你在我另一个很久远的回答下的回复了。从那个问题给出的图来看,这个 FightPlane 的父类是不是 Plane 啊?  是的话,那你就是大小写错了...因为构造初始化列表也可以给成员赋初值,所以那个报错说“找不到叫 plane 的成员”。
随时随地看视频慕课网APP
我要回答