When using a HashMap are values and keys guaranteed to be in the same order when iterating? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T01:14:30Zhttp://stackoverflow.com/feeds/question/128008http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when2When using a HashMap are values and keys guaranteed to be in the same order when iterating?Allain Lalonde2008-09-24T15:53:45Z2009-11-09T15:19:21Z
<p>When I iterate over the values or keys are they going to correlate? Will the second key map to the second value?</p>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when/128025#1280250Answer by smink for When using a HashMap are values and keys guaranteed to be in the same order when iterating?smink2008-09-24T15:56:43Z2008-09-24T16:05:51Z<p>The question confused me at first but @Matt cleared it up for me.</p>
<p>Consider using the entrySet() method that returns a set with the key-value pairs on the Map.</p>
<pre><code>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());
}
</code></pre>
<p>This outputs:</p>
<pre><code>1 => 2
2 => 3
3 => 3
</code></pre>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when/128032#1280329Answer by Alex Miller for When using a HashMap are values and keys guaranteed to be in the same order when iterating?Alex Miller2008-09-24T15:58:14Z2008-09-24T15:58:14Z<p>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.</p>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when/128082#1280821Answer by Cuchullain for When using a HashMap are values and keys guaranteed to be in the same order when iterating?Cuchullain2008-09-24T16:07:06Z2008-09-24T16:07:06Z<p>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.</p>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when/128085#1280855Answer by Matt for When using a HashMap are values and keys guaranteed to be in the same order when iterating?Matt2008-09-24T16:07:13Z2008-09-24T16:07:13Z<p>to use the entrySet that @Cuchullain mentioned:</p>
<pre><code>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
}
</code></pre>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when/128178#1281783Answer by basszero for When using a HashMap are values and keys guaranteed to be in the same order when iterating?basszero2008-09-24T16:21:57Z2008-09-24T16:21:57Z<p>You want to use this, <a href="http://java.sun.com/javase/6/docs/api/java/util/LinkedHashMap.html" rel="nofollow">LinkedHashMap</a>, for predicable iteration order</p>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when/128801#1288010Answer by Neil for When using a HashMap are values and keys guaranteed to be in the same order when iterating?Neil2008-09-24T18:07:10Z2008-09-24T18:07:10Z<p>I second @basszero. While</p>
<pre><code>for (Map.Entry<Integer, Integer> entry : a.entrySet())
</code></pre>
<p>will work, I find using a data structure that does this automatically is nicer. Now, you can just iterate "normally"</p>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when/129007#1290070Answer by pmac72 for When using a HashMap are values and keys guaranteed to be in the same order when iterating?pmac722008-09-24T18:41:36Z2008-09-24T18:41:36Z<p>HashMap's keySet method returns a Set, which does not guarantee order.<br />
HashMap's values() method returns a Collection, which does not guarantee order. </p>
<p>That said, the question was "are they going to correlate" so technically the answer is maybe, but don't rely on it.</p>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when/606235#6062351Answer by John Doe for When using a HashMap are values and keys guaranteed to be in the same order when iterating?John Doe2009-03-03T12:37:07Z2009-03-03T12:37:07Z<p>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.</p>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when/1701684#17016840Answer by Adam Al-Salman for When using a HashMap are values and keys guaranteed to be in the same order when iterating?Adam Al-Salman2009-11-09T15:19:21Z2009-11-09T15:19:21Z<p>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");</p>
<p>Iterator keyIterator = hashmap.keySet().iterator();
Iterator valueIterator = hashmap.values().iterator();</p>
<p>while(keyIterator.hasNext()) {
System.out.println("key: "+keyIterator.next());
}</p>
<p>while(valueIterator.hasNext()) {
System.out.println("value: "+valueIterator.next());
}</p>
<p>}</p>
<p>}</p>
<p>key: two
key: five
key: one
key: three
key: four
key: six
value: 2
value: 5
value: 1
value: 3
value: 4
value: 6</p>