- 浏览: 980 次
- 性别:
- 来自: 成都
最新评论
文章列表
1,分析:HashMap TreeMap 键怎么做到唯一的,不重复的
HashMap判断键唯一的方式与HashSet是一样
当我们使用Map集合,添加自定义了对象[元素],注意判断元素唯一,
HashMap需要:自定义元素的类,中,需要覆写hashCode equals
HashMap 代码示例:
public static void main(String[] args) {
HashMap hmp = new HashMap();
Student stu1 = new Stud ...