作为更大程序的一部分,我试图将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
实现类似的功能。我找到了解决方案,并找到了一种迭代正常HashMap
(Update 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
?
答案 0 :(得分:1)
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());
}