-2

可能重复:
对象类和数组 - 为什么它返回 'null' ?[爪哇]

其他标题相似的问题都有答案,我已经完成了他们的数据需要初始化,但我仍然得到一个空指针异常。谁能告诉我为什么?

    public class grid{
private Node [][] board = new Node [9][9];

public boolean add(int x, int y, char label) {
    boolean valid=true;

    System.out.println("enter add");
    if(label==' '){
        System.out.println("enter if 1");
        board[x][y].setValue('0');
    }
    else if(label<='9'&&label>'0'){
        System.out.println("enter if 2");
        board[x][y].setValue(label);
    }
    else{
        valid=false;
    }
    if(valid)
        System.out.println("valid");
    return valid;
}

我在 setValue 行(10 和 14)上遇到错误

    public class Node{
public char value;
public char []  possibleValues = {1,2,3,4,5,6,7,8,9};
public boolean correct=false;
    }

编辑:我想通了,如果其他人有同样的问题,这似乎可以解决它。

    if(label==' '){
        System.out.println("enter if 1");
        board[x][y]= new Node(' ');
    }
    else if(label<='9'&&label>'0'){
        System.out.println("enter if 2");
        board[x][y]= new Node(label);
    }
4

1 回答 1

1

数组不会初始化数组的元素。因此,每个board[x][y]最初都是null.

于 2013-01-19T19:05:18.247 回答