繁体   English   中英

C++编译器错误基类问题

[英]C++ compiler error base class issue

我得到这个->

错误 - 类型 'Ship' 不是 'CruiseShip' 的直接基础 -

我想不明白。 这是我假设发生错误的地方。 我不确定我应该如何调用基类?

CruiseShip::CruiseShip(string n, string y, int p) : Ship(n,y)

CruiseShip.cpp

#include "CruiseShip.h"
#include "Ship.h"

#include <iostream>

using namespace std;

Ship s;
  CruiseShip::CruiseShip(string n, string y, int p) : Ship(n,y)
  {
    passengers=p;
  }
  //A print function that overrides the print function in the base class.
  //The CruiseShip class's print function should display only the ship's
  //name and the maximum number of passengers.
   void print()
   {
    cout<<"Name: "<<s.getName()<<"\nMaximum passengers:"<<passengers<<endl;
  cout<<"-------------------------"<<endl;
   }

CruiseShip.h

#ifndef CRUISESHIP_H
#define CRUISESHIP_H
#include <string>
using namespace std;

class Ship;

class CruiseShip{
    private:
        int passengers;
        Ship::Ship s;
    public:
    CruiseShip(string, string, int);
    virtual void print();
};

#endif

发送文件

#include "Ship.h"
#include <iostream>

using namespace std;

string name;
string built;

Ship::Ship(){

}
Ship::Ship(string n, string b)
{
   name = n;
  built = b;

}
//accessors and mutators methods
string getName()
{
  return name;
}
string getBuilt()
{
  return built;
}
//A virtual print function that displays
//the ship's name and the year it was built
void print()
{
  cout<<"Name:"<<getName()<<"\nYear built:"<<getBuilt()<<endl;
  cout<<"-------------------------"<<endl;
}

Ship.h

#ifndef SHIP_H
#define SHIP_H
#include <string> 

using namespace std;

class Ship{
private:
    string name;
    string built;

public:
    Ship();
    Ship(string, string);
    string getName();
    string getBuilt();
    virtual void print();


};
#endif

您需要从 Ship 派生 CruiseShip:

class CruiseShip : public Ship {

这个:

CruiseShip::CruiseShip(string n, string y, int p) : Ship(n,y)
                                                  ^^^^^^^^^^^^

是一个基类构造函数调用,但您还没有从 Ship 派生 CruiseShip,但编译器知道 Ship 是一个类类型。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM