题示代码的功能为:循环遍历输出Map当中的每一个元素 Mapmap=newHashMap();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
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
举一反三
- 题示代码的功能为:循环遍历输出Map当中的每一个元素。《插入代码》处应填入的代码是( )Map map=new HashMap(); map.put(“jessica”,100); map.put(“tom”,200); map.put(“den”,300); Set《插入代码1》 set =《插入代码2》; for (《插入代码3》 per : set) { System.out.println(per.getKey() + ":" + per.getValue()); } 未知类型:{'options': ['[Entry] map.keySet() Entry', '[Entry] map.entrySet() Entry', '[Map.Entry<String, Integer]> map.keySet() Map.Entry[String, Integer]', '[Map.Entry<String, Integer]> map.entrySet() Map.Entry[String, Integer]'], 'type': 102}
- 题示代码的功能为:循环遍历输出Map当中的每一个元素。《插入代码》处应填入的代码是( )Map map=new HashMap(); map.put(“jessica”,100); map.put(“tom”,200); map.put(“den”,300); Set《插入代码1》 set =《插入代码2》; for (《插入代码3》 per : set) { System.out.println(per.getKey() + ":" + per.getValue()); } A: <Entry> map.keySet() Entry B: <Entry> map.entrySet() Entry C: <Map.Entry<String, Integer>> map.keySet() Map.Entry<String, Integer> D: <Map.Entry<String, Integer>> map.entrySet() Map.Entry<String, Integer>
- 下列语句正确的是?() A: Map B: Map<> C: HashMap< D: Map<String,String>
- 将Map集合中的键存储到Set集合的方法是( )。 A: get() B: put() C: keySet() D: entrySet()
- List、Set、Map哪个继承自Collection接口,以下说法正确的是() List Map List Map Set List Set Set Map