我在网格的默认构造函数的前两行收到编译器错误“错误:墙不是网格的成员”。我不确定为什么会这样说,因为我在头文件中同时定义了墙和网格!我也尝试过使用 this->wall、Grid::wall 和初始化列表。这是代码:
Grid::Grid() {
this->wall = Species("wall");
this->empty = Species("empty");
Grid::turn_number = 0;
int a,b;
for(a= 0; a < 100; a++)
for(b = 0; b< 100; b++) {
Creature empty_creature = Creature(Grid::empty,a,b,NORTH,this);
((Grid::map)[a][b]) = empty_creature;
}
Grid::width = 0;
Grid::height = 0;
}
当我将默认构造函数更改为使用初始化列表时,我得到了同样的错误:
Grid::Grid()
: width(0), height(0), turn_number(0), wall("wall"), empty("empty"){
int a,b;
for(a= 0; a < 100; a++)
for(b = 0; b< 100; b++) {
Creature empty_creature = Creature(Grid::empty,a,b,NORTH,this);
((Grid::map)[a][b]) = empty_creature;
}
}
在头文件中:
class Grid {
protected:
Creature map[100][100];
int width,height;
int turn_number;
Species empty;
Species wall;
public:
Grid();
Grid(int _width, int _height);
void addCreature(Species &_species, int x, int y, Direction orientation);
void addWall(int x, int y);
void takeTurn();
void infect(int x, int y, Direction orientation, Species &_species);
void hop(int x, int y, Direction orientation);
bool ifWall(int x, int y, Direction orientation);
bool ifEnemy(int x, int y, Direction orientation, Species &_species);
bool ifEmpty(int x, int y, Direction orientation);
void print();
};
这是我其余的编译器错误(在评论中要求)。抱歉格式化,我的电脑出于某种原因吐出了奇怪的字符。
Darwin.c++: In constructor ‘Grid::Grid()’:
Darwin.c++:8:40: error: class ‘Grid’ does not have any field named ‘wall’
Darwin.c++:8:54: error: class ‘Grid’ does not have any field named ‘empty’
Darwin.c++:12:39: error: ‘empty’ is not a member of ‘Grid’
Darwin.c++: In constructor ‘Grid::Grid(int, int)’:
Darwin.c++:17:86: error: class ‘Grid’ does not have any field named ‘wall’
Darwin.c++:17:99: error: class ‘Grid’ does not have any field named ‘empty’
Darwin.c++:21:39: error: ‘empty’ is not a member of ‘Grid’
Darwin.c++: In member function ‘void Grid::addWall(int, int)’:
Darwin.c++:32:31: error: ‘wall’ is not a member of ‘Grid’
Darwin.h:35:10: error: field ‘empty’ has incomplete type
Darwin.h:36:10: error: field ‘wall’ has incomplete type
In file included from RunDarwin.c++:33:0:
Darwin.h:35:10: error: field ‘empty’ has incomplete type
Darwin.h:36:10: error: field ‘wall’ has incomplete type