When using a HashMap are values and keys guaranteed to be in the same order when iterating? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:14:30Z http://stackoverflow.com/feeds/question/128008 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when 2 When using a HashMap are values and keys guaranteed to be in the same order when iterating? Allain Lalonde 2008-09-24T15:53:45Z 2009-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#128025 0 Answer by smink for When using a HashMap are values and keys guaranteed to be in the same order when iterating? smink 2008-09-24T15:56:43Z 2008-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&lt;Integer, Integer&gt; a = new HashMap&lt;Integer, Integer&gt;(2); a.put(1, 2); a.put(2, 3); for (Map.Entry&lt;Integer, Integer&gt; entry : a.entrySet()) { System.out.println(entry.getKey() + " =&gt; " + entry.getValue()); } </code></pre> <p>This outputs:</p> <pre><code>1 =&gt; 2 2 =&gt; 3 3 =&gt; 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#128032 9 Answer by Alex Miller for When using a HashMap are values and keys guaranteed to be in the same order when iterating? Alex Miller 2008-09-24T15:58:14Z 2008-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#128082 1 Answer by Cuchullain for When using a HashMap are values and keys guaranteed to be in the same order when iterating? Cuchullain 2008-09-24T16:07:06Z 2008-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#128085 5 Answer by Matt for When using a HashMap are values and keys guaranteed to be in the same order when iterating? Matt 2008-09-24T16:07:13Z 2008-09-24T16:07:13Z <p>to use the entrySet that @Cuchullain mentioned:</p> <pre><code>Map&lt;String, String&gt; map = new HashMap&lt;String, String&gt;(); // populate hashmap for (Map.Entry&lt;String, String&gt; 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#128178 3 Answer by basszero for When using a HashMap are values and keys guaranteed to be in the same order when iterating? basszero 2008-09-24T16:21:57Z 2008-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#128801 0 Answer by Neil for When using a HashMap are values and keys guaranteed to be in the same order when iterating? Neil 2008-09-24T18:07:10Z 2008-09-24T18:07:10Z <p>I second @basszero. While</p> <pre><code>for (Map.Entry&lt;Integer, Integer&gt; 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#129007 0 Answer by pmac72 for When using a HashMap are values and keys guaranteed to be in the same order when iterating? pmac72 2008-09-24T18:41:36Z 2008-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#606235 1 Answer by John Doe for When using a HashMap are values and keys guaranteed to be in the same order when iterating? John Doe 2009-03-03T12:37:07Z 2009-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#1701684 0 Answer by Adam Al-Salman for When using a HashMap are values and keys guaranteed to be in the same order when iterating? Adam Al-Salman 2009-11-09T15:19:21Z 2009-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>