作为较大程序的一部分,我尝试将Apache Commons MultiKeyMap的每个值乘以120。我认为我可以使用Iterator,但是我相信这些仅适用于普通哈希图。

就数组而言,我想做的是:

int[] array = { 8, 9, 6, 4, 5 }
for (int i = 0; i < array.length; i++) {
  array[i] = array[i] * 120;
}


我不确定如何使用MultiKeyMap来实现类似的功能。我一直在寻找解决方案,并找到了一种迭代普通HashMapUpdate all values at a time in HashMap)的方法:

Iterator it = yourMap.entrySet().iterator();
Map.Entry keyValue;
while (it.hasNext()) {
    keyValue = (Map.Entry)it.next();
    //Now you can have the keys and values and easily replace the values...
}


但是,这仅适用于我有<K, V>的简单<K, K, K, V>映射。如何使用MultiKeyMap做到这一点?

最佳答案

MultiKeyMap仍支持迭代器,请参阅文档:
https://commons.apache.org/proper/commons-collections/apidocs/org/apache/commons/collections4/map/MultiKeyMap.html#mapIterator()

MapIterator it = multiKeyMap.mapIterator();
while (it.hasNext()) {
    it.next();
    System.out.println(it.getValue());
}

10-06 09:27