Possible Duplicate:
How do I iterate over each Entry in a Collection Map?
What is the best way to iterate through a HashMap?
What is the best way to iterate through a |
|||||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Iterate through the
Read more on |
|||||||||||||||||||||
|
|
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 values is OK (see |
|||||||||||||||||||
|
|
Extracted from Reference link: How to Iterate Over a Map in Java There are several ways of iterating over a Method #1: Iterating over entries using For-Each loop. This is the most common method and is preferable in most cases. Should be used if you need both map keys and values in the loop.
Note that For-Each loop was introduced in Java 5 so this method is working only in newer versions of the language. Also For-Each loop will throw Method #2: Iterating over keys or values using For-Each loop. If you need only keys or values from the map, you can iterate over keySet or values instead of entrySet.
This method gives slight performance advantage over Method #3: Iterating using Iterator. Using Generics:
Without Generics:
You can also use same technique to iterate over This method might look redundant but it has its own advantages. First of all it is the only way to iterate over a map in older versions of Java. The other important feature is that it is the only method that allows you to remove entries from the map during iteration by calling iterator.remove(). If you try to do this during For-Each iteration you will get "unpredictable results" according to javadoc. From performance point of view this method is equal to For-Each iteration. Method #4: Iterating over keys and searching for values (inefficient).
This might look like a cleaner alternative for method #1 but in practice it is pretty slow and inefficient as getting values by a key might be time consuming (this method in different Map implementations is 20%-200% slower than method #1). If you have FindBugs installed, it will detect this and warn you about inefficient iteration. This method should be avoided. Conclusion If you need only keys or values from the map use method #2. If you are stuck with older version of Java (less than 5) or planning to remove entries during iteration you have to use method #3. Otherwise use method #1. |
|||||
|
|
Smarter:
|
|||||||||||||
|
|
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. |
|||
|
|