What is the best way to iterate through a hash map?
|
1
|
|||||||||||||||
|
|
|
Iterate through the entrySet like so:
Read more on Map: |
|||
|
|
|
|
You can iterate through the entries in a Map in several ways. Getting each key and value like this:
Or you can get the list of keys with
If you just want to get all of the values, and aren't concerned with the keys, you can use:
|
||
|
|
|
|
Depends. If you know you're going to need both the key and the value of every entry, then go through the entrySet. If you just need the values, then there's the values() method. And if you just need the keys, then use keyset(). A bad practice would be to iterate through all of the keys, and then within the loop, always do map.get(key) to get the value. If you're doing that, then the first option I wrote is for you. |
||
|
|
|
|
If you're only interested in the keys, you can iterate through the
If you only need the values, use
Finally, if you want both the key and value, use
One caveat: if you want to remove items mid-iteration, you'll need to do so via an Iterator (see karim79's answer). However, changing item keys and values is OK (see |
|||
