1. 题示代码的功能为:循环遍历输出Map当中的每一个元素 d Map map=new HashMap(); map.put(“jessica”,100); map.put(“tom”,200); map.put(“den”,300); Set 位置①set = 位置②; for ( 位置③per : set) { System.out.println(per.getKey() +":" + per.getValue()); } 下列每个选项中分别填入上面三个位置,正确的是 a) <Entry> map.keySet() Entry b) <Entry<Integer,String >> map.entrySet() Entry c) <Map.Entry<String, Integer>> map.keySet() Map.Entry d) <Map.Entry<String, Integer>> map.entrySet() Map.Entry
|