If I have an object implementing the Map interface in Java and I wish to iterate over every pair contained within it, what is the most efficient way of going through the map? Will the ordering of elements depend on the specific map implementation that I have for the interface?
|
|
|
||
|
|
|
|
Yes, the order depends on the specific Map implementation. @ScArcher2 has the more elegant Java 1.5 syntax. In 1.4, I would do something like this:
|
||||
|
|
|
This is a two part question: How to iterate over the entries of a Map - @ScArcher2 has asnwered that perfectly. What is the order of iteration - if you are just using
|
|||
|
|
|
Typical code for iterating over a map is:
HashMap is the canonical map implementation and doesn't make guarantees (or though it should not change order if no mutating operation are performed on it). SorterMap will return entries on however the map sorts the keys. LinkedHashMap will either return entries in insertion-order or access-order depending upon how it has been constructed. EnumMap returns entries in natural order of keys. Note, IdentityHashMap entrySet iterator currently has a peculiar implementation which returns the same Map.Entry instance for every item in the entrySet! However, every time a new the iterator advances the Map.Entry is updated. |
||
|
|
|
|
FYI, you can also use |
||
|
|
|
|
I typically do it by iterating over the keyset instead of the entry set. I find the code looks a bit cleaner. You also know that you are always looking at items in keys order for ordered maps such as the LinkedHashMap:
|
||
|
|
|
In theory, the most efficient way will depend on which implementation of Map. The official way to do this is to call map.entrySet(), which returns a set of Map.Entry, each of which contains a key and a value (entry.getKey() and entry.getValue()). In an idiosyncratic implementation, it might make some difference whether you use map.keySet(), map.entrySet() or something else. But I can't think of a reason why anyone would write it like that. Most likely it makes no difference to performance what you do. And yes, the order will depend on the implementation - as well as (possibly) the order of insertion and other hard-to-control factors. [edit] I wrote valueSet() originally but of course entrySet() is actually the answer. |
||
|
|
|
|
Example of using iterator and generics:
|
||
|
|
