为什么可以用Student的对象来接受value
代码:
Student st = students.get(ID);
官方解释:get(key)返回映射中的相应key(ID)的Value值(name)
若不存在则返回空null
问题是st是一个Student<key,value>对象 为什么可以单单接受value
代码:
Student st = students.get(ID);
官方解释:get(key)返回映射中的相应key(ID)的Value值(name)
若不存在则返回空null
问题是st是一个Student<key,value>对象 为什么可以单单接受value
2015-11-04
举报