Student student = students.get(id);这句得到的是什么?为什么???
你用的是HashMap(哈希表)吗?
HashMap是由一对键值对来存储数据的。
这个方法是HashMap的get(Object key)方法,传进去键值对的键,返回指定的键映射的值,如果这个Map不包含这个键,则返回 null