今天收到一个面试电话,问我怎么遍历Map集合,我当时蒙了!



public class IteratorMapTest {

public static void main(String[] args) {
Map map = new HashMap();
{
map.put("1001", "abc");
map.put("1002", "bcd");
map.put("1003", "cdf");
}
//开始遍历Map集合
for(Map.Entry str: map.entrySet()) {
String string = str.getValue();
String i = str.getKey();
System.out.println("value=" + string + "\t key" + i);
}
}
}


你可能感兴趣的:(今天收到一个面试电话,问我怎么遍历Map集合,我当时蒙了!)