3

我试过如下:

for (Object[] trials: trialSpecs) {
    Object[] result= (Object[]) trials;
    multiValueMap.put((Integer) result[0], new ArrayList<Integer>());
    multiValueMap.get(result[0]).add((Integer)result[1]);
}

但是每次新值都被旧值替换。我知道这是因为new ArrayList<Integer>我在代码中使用了。

但我无法替换这个块。

4

2 回答 2

5

只有put一个new ArrayList()如果不存在:

for (Object[] trials: trialSpecs) { 
    Object[] result= (Object[]) trials; 
    //Check to see if the key is already in the map:
    if(!multiValueMap.containsKey((Integer) result[0]){
        multiValueMap.put((Integer) result[0], new ArrayList()); 
    }
    multiValueMap.get(result[0]).add((Integer)result[1]); 
}
于 2013-10-10T15:12:01.923 回答
3

像 Guava 和 Apache 这样的 java 库提出的 Multimap 正是这样做的:

番石榴

Multimap<String, String> mhm = ArrayListMultimap.create();
mhm.put(key, "A");
mhm.put(key, "B");
mhm.put(key, "C");
Collection<String> coll = mhm.get(key);

使用阿帕奇

MultiMap mhm = new MultiHashMap();
mhm.put(key, "A");
mhm.put(key, "B");
mhm.put(key, "C");
Collection coll = (Collection) mhm.get(key);
于 2013-10-10T15:20:36.300 回答