1

当我尝试读取数组值时,出现错误“线程“main”java.lang.NullPointerException 中的异常”。这是我认为导致错误的代码。

        class Board
{
    private static char[][] board;

    public Board(int r, int c)
    {
        setRow(r);
        setColumn(c);
        char board[][] = new char[row][column];
    }

    public void getBoard()
    {
        for (int c = 1;c <= getColumn()-1 ;c++)
        {
            System.out.print("\t"+c);
        }
        System.out.print("\n");
        for (int r = 1; r <= getRow()-1; r++)
        {
            System.out.print(r);
            for (int c = 1; c <= getColumn(); c++)
            {
                System.out.print("\t" + board[r][c]);  //I think board[r][c] is causing it.
            }
            System.out.println("");
        }
        return;
    }
}

如果需要,我可以上传整个文件。

任何帮助将不胜感激,这让我昨晚保持清醒。

4

2 回答 2

2

代替

char board[][] = new char[row][column];

board = new char[row][column];

在第一个语句中,您将一个值分配给一个局部变量,而不是您的实例。

于 2012-09-26T14:45:47.260 回答
1

您在构造函数中隐藏了成员变量

char board[][] = new char[row][column];

它应该是

 board= new char[row][column];
于 2012-09-26T14:48:46.070 回答