vote up 2 vote down star

When I iterate over the values or keys are they going to correlate? Will the second key map to the second value?

flag

9 Answers

vote up 8 vote down check

No, not necessarily. You should really use the entrySet().iterator() for this purpose. With this iterator, you will be walking through all Map.Entry objects in the Map and can access each key and associated value.

link|flag
vote up 0 vote down

The question confused me at first but @Matt cleared it up for me.

Consider using the entrySet() method that returns a set with the key-value pairs on the Map.

Map<Integer, Integer> a = new HashMap<Integer, Integer>(2);
a.put(1, 2);
a.put(2, 3);
for (Map.Entry<Integer, Integer> entry : a.entrySet()) {
    System.out.println(entry.getKey() + " => " + entry.getValue());
}

This outputs:

1 => 2
2 => 3
3 => 3
link|flag
i thought that's what the question meant at first too but sounds like he's iteration over the keys and values independently using the .keys() and .values() methods. i don't think the LinkedHashMap solves the problem in this case – Matt Sep 24 '08 at 16:04
Thanks Matt - got me confused there :). – smink Sep 24 '08 at 16:06
On a different note, you should never create a HashMap of the same size as the number of expected elements. HashMaps have a loadfactor that is usually 75%. This means that if the map is 75% full and you add an element, it will increase it's size. – Roel Spilker Sep 24 '08 at 18:42
vote up 1 vote down

Both values() and keySet() delegate to the entrySet() iterator so they will be returned in the same order. But like Alex says it is much better to use the entrySet() iterator directly.

link|flag
This is an implementation detail. I don't think there's any guarantee that this is true. – Alex Miller Sep 24 '08 at 18:31
vote up 5 vote down

to use the entrySet that @Cuchullain mentioned:

Map<String, String> map = new HashMap<String, String>();

// populate hashmap

for (Map.Entry<String, String> entry : map.entrySet()) {
  String key = entry.getKey();
  String value = entry.getValue();
  // your code here
}
link|flag
vote up 3 vote down

You want to use this, LinkedHashMap, for predicable iteration order

link|flag
...or LinkedHashSet if you need an deterministically ordered set – ivan_ivanovich_ivanoff Jun 20 at 21:14
vote up 0 vote down

I second @basszero. While

for (Map.Entry<Integer, Integer> entry : a.entrySet())

will work, I find using a data structure that does this automatically is nicer. Now, you can just iterate "normally"

link|flag
vote up 0 vote down

HashMap's keySet method returns a Set, which does not guarantee order.
HashMap's values() method returns a Collection, which does not guarantee order.

That said, the question was "are they going to correlate" so technically the answer is maybe, but don't rely on it.

link|flag
vote up 1 vote down

I agree with pmac72. Don't assume that you'll get ordered values or keys from an unordered collection. If it works time to time it is just pure hazard. If you want order to be preserved, use a LinkedHashMap or a TreeMap or commons collections OrderedMap.

link|flag
vote up 0 vote down

public class Test { public static void main(String[] args) { HashMap hashmap = new HashMap(); hashmap.put("one", "1"); hashmap.put("two", "2"); hashmap.put("three", "3"); hashmap.put("four", "4"); hashmap.put("five", "5"); hashmap.put("six", "6");

Iterator keyIterator = hashmap.keySet().iterator(); Iterator valueIterator = hashmap.values().iterator();

while(keyIterator.hasNext()) { System.out.println("key: "+keyIterator.next()); }

while(valueIterator.hasNext()) { System.out.println("value: "+valueIterator.next()); }

}

}

key: two key: five key: one key: three key: four key: six value: 2 value: 5 value: 1 value: 3 value: 4 value: 6

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.