正如我的问题所说我想将我的arraylist项插入到hashmap中。
这是我的HashMap。
HashMap<String, Integer> unSorted = new HashMap<String, Integer>();
这是我的ArrayList。
arrayList.add("1");
arrayList.add("2");
添加到Hashmap。
unSorted.put(arrayList,50);
我很确定我不能添加像这样的arraylist。我忘了我必须迭代arrayList并逐个插入值。
我怎么会出错?
感谢您的时间!
答案 0 :(得分:5)
迭代ArrayList
。
for(String item:arrayList)
{
unSorted.put(item,50);
}