为什么这里containsKey方法可以直接传入id,而containsValue方法里面还需要新建一个对象,id为什么要用null
2 回答
XhstormR
TA贡献140条经验 获得超197个赞
Map<Integer, String> map = new HashMap<>(); map.containsKey(1); 是否包含该 Key map.containsValue("A"); 是否包含该 Value
因为老师之前指定过泛型了,Key 就是 int 类型,Value 就是 student 类型,所以直接可以直接传入。
至于 id 为 null,意思就是空值,你可以这么理解就相当于一个占位符。
望采纳。
添加回答
举报
0/150
提交
取消