In java while using the HashMap, they are using the Iterator class. But I can't understand for what purpose they are using Iterator in HashMap?
|
Iterators should e used to read the elements from any kind of Collections like ArrayList, HAshMap etc. They will help us to navigate through the Iterator Objects, if they are not there, how can we retrieve the elements from the collection? |
|||
|
|
|
Entries in a |
|||
|
|
|
For iteration, maybe? In general, iterators are used to "remember" a point in the collection, so that you can do something to a current element and then move iterator to the next element, and so on... When you write a code like
You are implicitly using the collection's iterator. It is roughly equivalent to writing something like
|
||||
|
|
|
You can iterate through the keys:
Or you can iterate through the values:
These two iterators offered by HashMap allow you to get values (for example) from the map even if you dont know the keys. Or even get a list of the keys. |
|||
|
|
|
Iterators provide a way to go over all elements in some order. Not very useful for |
|||
|
|