commons Collections4 MultiMap

MultiMap<String, Integer> multiMap = new MultiValueMap<>();
multiMap.put("A", 1);
multiMap.put("A", 2);
multiMap.put("A", 3);
Collection col = (Collection) multiMap.get("A");
for (Object obj : col) {
    System.out.println(obj);
}

  這是一個多值Map的工具類。這個map的值都是collection類型。(若是同一個key只put了一次,那麼還get到的仍是Collection類型)java

相關文章
相關標籤/搜索