I have a HashMap<String,String> (called p2p) and I want to make a loop over its elements. I found the following simple way to do it:
for (String key : p2p.keySet()) {
value = p2p.get(key);
}
However, later I found out that people use iterator(). For example:
Iterator it = p2p.keySet().iterator();
while(it.hasNext()) {
key = it.next();
value = p2p.get(key);
}
For me the first way looks simpler. So, my question is why people use the second way? Does it have some objective advantages or it is just question of taste and subjectivity of the simplicity?