当我尝试为测试方法创建对象时,我得到一个空指针异常。
这是构造函数的代码;
public Board(int size)
{
setBoard(size);
for (int row = 0; row < size; row++) {
for (int col = 0; col < size; col++) {
board[row][col] = 'E';
}
}
}
setBoard(int size) 代码;
public void setBoard(int size)
{
this.size = size;
}
我一直在尝试,但还没有结果...
提前致谢!