- HashMap<Student,String> hm = new HashMap<Student,String>();
-
- hm.put(new Student("lisi",38),"北京");
- hm.put(new Student("zhaoliu",24),"上海");
- hm.put(new Student("xiaoqiang",31),"沈阳");
- hm.put(new Student("wangcai",28),"大连");
- hm.put(new Student("zhaoliu",24),"铁岭");
复制代码 如果说hashMap中 我们修改了其中元素的值,这样我们就无法对原来的值进行删除 造成内存的溢出,请问 如果是遇到这样的情况我们该怎么处理? |