循环包含和前向声明类

时间:2017-10-07 22:59:46

标签: c++ c++11 inheritance forward-declaration

我实际上是c ++的新手,我试图完成一个小项目来理解继承。我在包含和转发声明方面遇到问题。以下是似乎存在问题的以下标题:

player.h:

#ifndef PLAYER_H
#define PLAYER_H
#include "abstractPlayerBase.h"
#include "cardException.h"
class abstractPlayerBase;
class Player: public AbstractPlayerBase
{
   ...
   //a function throws a CardException
};
#endif

baseCardException.h:

#ifndef BASECARDEXCEPTION_H
#define BASECARDEXCEPTION_H
#include "Player.h"

class BaseCardException
{
...
};
#endif

cardException.h:

#ifndef CARDEXCEPTION_H
#define CARDEXCEPTION_H
#include "baseCardException.h"

class Player; //the problem seems to be here
class CardException: public BaseCardException
{
public:
    CardException(const Player& p);
};
#endif

使用此cardException.h我收到错误:cardException.h: error: expected class-name before ‘{’ tokencardException.h: error: multiple types in one declaration

如果我将此用于cardException:

#ifndef CARDEXCEPTION_H
#define CARDEXCEPTION_H
#include "baseCardException.h"

class BaseCardException; //this changed
class CardException: public BaseCardException
...

错误:cardException.h: error: invalid use of incomplete type ‘class BaseCardException’ class CardException: public BaseCardExceptionCardException.h: error: ‘Player’ does not name a type发生。

如果同时使用前向声明:cardException.h:8:7: error: multiple types in one declaration class BaseCardExceptioncardException.h: error: invalid use of incomplete type ‘class BaseCardException’

我只是想知道我在这里做错了什么?

1 个答案:

答案 0 :(得分:1)

BaseCardException.h似乎包含一个名为CardException的类的声明,但是您的命名约定似乎表明它应该包含一个名为BaseCardException的类。

您收到的错误是因为编译器无法在CardException类尝试从其继承的位置找到BaseCardException类的定义。

此外,AbstractPlayerBase类的定义在哪里?