ArrayList的HashMap导致nullpointerexception

时间:2013-02-27 04:32:17

标签: java arraylist nullpointerexception hashmap

我有一个ArrayLists的HashMap用于值,但是当我添加ArrayLists时HashMap保持为空,然后当我尝试get()ArrayList时抛出NullPointerException。非常困惑。

Random rand = new Random();
HashMap<String,ArrayList<Integer>> hands = new HashMap<String,ArrayList<Integer>>();
HashMap<Integer, Boolean> deck = new HashMap<Integer, Boolean>();

for(int x=0;x<4;x++){
    for(int y=0;y<4;y++){
    hands.put(x+SUITS[x], new ArrayList<Integer>());
    }
}       
    for(int x=0;x<4;x++){
        for(int y=0;y<13;y++){
            int randCard = rand.nextInt(52)+1;
            if(!deck.containsKey(randCard)){
                deck.put(randCard, true);

                hands.get(x+cardSuit(randCard)).add(randCard);

            }else y--;
        }
    }

2 个答案:

答案 0 :(得分:5)

您正在使用如下所示的键将值放入地图中:

someInt + ""

您从地图中获取的值包含如下所示的键:

someInt + cardSuit(randCard)

除非cardSuit总是返回一个空字符串,否则它们将成为不同的键。

答案 1 :(得分:3)

这里cardSuit(randCard)正在返回一些不在地图中的内容。

您将x+""作为键。

但是当你正在检索时,你正在使用它:

x+"something"