-1

我尝试将友谊设置为课堂GameSimulator上的方法Player

由于某种原因,我得到了错误。

游戏模拟器.h:

#ifndef GAMESIMULATOR_H_
#define GAMESIMULATOR_H_

#define NULL 0

#include "Player.h"

class GameSimulator {
public:
    void runSimulation();
    static GameSimulator* createGame();
    bool saveSession(string); // returns failure or successful
    bool loadSession(string); // returns failure or successful
    friend ostream& operator <<(ostream& out,GameSimulator& gs);
private:
    ~GameSimulator();
    GameSimulator();
    static GameSimulator* game;
    Player* *Population;
    unsigned numOfPlayers[4];
    int scores[4];
    unsigned numGeneration;
    unsigned numRounds;
};

#endif /* GAMESIMULATOR_H_ */

播放器.h

#ifndef PLAYER_H_
#define PLAYER_H_
// includes

#include <iostream>
using namespace std;
enum PlayerType {row,col}; // player type
enum Strategy {TrustingFool,nasty,rnd,winStayLooseShift,titForTwoTats}; // strategy type
enum Move {Cooparate , Defect}; // move type

//#include "GameSimulator.h"

class GameSimulator;

class Player {
protected:
    int *myPayoffs;
    int *otherPayoffs;
    PlayerType playerType;// row or col player
    Strategy myStrategy; // what strategy to play
    unsigned roundID;   // #id iteration
public:
    friend bool GameSimulator::saveSession(string filename);
    friend bool GameSimulator::loadSession(string filename);
    virtual ~Player() = 0;
    virtual Move getMove() = 0;
    virtual string getStartegy() = 0;
    Player();
};


#endif /* PLAYER_H_ */

问题是:

../Player.h:30:56: error: invalid use of incomplete type ‘struct GameSimulator’
../Player.h:20:7: error: forward declaration of ‘struct GameSimulator’
../Player.h:31:56: error: invalid use of incomplete type ‘struct GameSimulator’
../Player.h:20:7: error: forward declaration of ‘struct GameSimulator’
../Player.h: In member function ‘bool GameSimulator::saveSession(std::string)’:
../Player.h:28:11: error: ‘unsigned int Player::roundID’ is protected
../GameSimulator.cpp:43:54: error: within this context
../Player.h:24:7: error: ‘int* Player::myPayoffs’ is protected
../GameSimulator.cpp:44:34: error: within this context
../Player.h:28:11: error: ‘unsigned int Player::roundID’ is protected
../GameSimulator.cpp:51:54: error: within this context
../Player.h:25:7: error: ‘int* Player::otherPayoffs’ is protected
../GameSimulator.cpp:52:34: error: within this context
../Player.h:28:11: error: ‘unsigned int Player::roundID’ is protected
../GameSimulator.cpp:58:33: error: within this context
../Player.h:26:13: error: ‘PlayerType Player::playerType’ is protected
../GameSimulator.cpp:71:34: error: within this context
make: *** [GameSimulator.o] Error 1
4

1 回答 1

1

您的 GameSimulator 类定义引用指向 的指针Player,但不需要完整类型。但是,您的Player类定义确实需要完整的GameSimulator.

#include "Player.h"从 GameSimulator.h 中删除并取消注释 Player.h中的注释#include "GameSimulator.h"。然后,class Player;在 GameSimulator.h 中前向声明。

请注意,这些类(.cpp 文件)中的每一个的实现都需要为另一个包含 .h 文件。

于 2012-06-17T00:55:31.243 回答