如何在HashMap中将元素添加到ArrayList?
这是一个问题,我问了很多遍,解决了之后就忘记了。我想很多人都拥有相同的答案,所以这是简单的答案。
// Example
HashMap<String, ArrayList<String>> someElements = new HashMap<String, ArrayList<String>>();
答案 0 :(得分:0)
// fill the HashMap with the key that you need
// initiate it with an empty ArrayList
someElements.put("keyString" , new ArrayList<String>());
// Later when wanting to add an element to the ArrayList of a key use
someElements.get("keyString").add("TheStringValue");