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>
举一反三
- 题示代码的功能为:循环遍历输出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当中的每一个元素 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
- 下列【1】【2】【3】【4】注释标注的哪行代码有错误?import java.util.*;public class E {public static void main(String args[]) {Map<;String,String>; map = new HashMap<;String,String>;(); //【1】Set<;Integer>; treeSet = new TreeSet<;Integer>;();//【2】Map<;String,String>; treeMap= new TreeMap<;String,String>;(); //【3】List<;char>; list = new LinkedList<;char>;(); //【4】 A: 【1】 B: 【2】 C: 【3】 D: 【4】
- 下列语句正确的是?() A: Map B: Map<> C: HashMap< D: Map<String,String>
- HashMap<Integer,String> map = new HashMap( );map.put(1,"one");map.put(2,"two");map.put(3,"three");map.put(1,"four");
内容
- 0
请看一下代码,《插入代码》处应填入的代码是( )Map map=new HashMap(); map.put(“tom”,123.6); map.put(“jim”,234.5); map.put(“terry”,45.3);《插入代码》 其中《插入代码》处要实现的功能是把key为“jim”的value值在原有数字的基础上添加100。 A: map.put(“jim”,map.get(“jim”)+100); B: map.set(“jim”,map.get(“jim”)+100); C: map.put(“jim”,234.5); D: map.set(“jim”,234.5);
- 1
下面创建HashMap的语句中,正确的是 ( )。 A: Map m= new HashMap(); B: HashMap m= new Map(); C: HashMap m=new HashMap<String,String>; D: Map m = new Map();
- 2
下面语句执行后,执行get(1)方法得到的值是() HashMap<Integer,String> map = new HashMap; map.put(1,"one"); map.put(2,"two"); map.put(3,"three"); map.put(1,"four");
- 3
下列元件例化中,哪种描述属于名字关联( ) A: U1:mn PORT MAP(C=>F,A=>D,B=>E); B: U2:mn PORT MAP(D,E,F); C: U3:mn PORT MAP(D,E,C=>F); D: U4:mn PORT MAP(mn1,mn2,mn3);
- 4
下面创建HashMap的语句中,正确的是 ( )。 A: Map m= new HashMap(); B: HashMap m= new Map(); C: HashMap m=new HashMap<String,String>; D: Map m = new Map();