In Python, you can have key,value pairs in a dictionary where you can loop through them, as shown below:
for k,v in d.iteritems():
print k,v
Is there a way to do this with Java HashMaps?
|
In Python, you can have key,value pairs in a dictionary where you can loop through them, as shown below:
Is there a way to do this with Java HashMaps? |
|||
|
|
|
Yes - for example:
|
|||||
|
|
The HashMap.entrySet() will return beans of key value pairs similar to the dictionary.iteritems(). You can then loop through them. I think is the closest thing to the Python version. |
||||
|
|
|
As shown in the answers, there are basically two ways to iterate over a
The second one is maybe more readable, but it has a performance cost of unnecessarily calling The
The
Note that readability should be preferred over premature optimization, but it's important to have this in mind. |
||||
|
|
Something like that... |
|||
|
|
|
In Java, you can do the same like the following.
|
|||||||||||||
|