-1

GameSimulatorクラスごとにメソッドに友情を設定しようとしていPlayerます。

なんらかの理由でエラーが発生します。

GameSimulator.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_ */

Player.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 に答える