美文网首页我与咖啡娘的爱恨情仇
04.重写hashCode方法和equals方法实现HashSe

04.重写hashCode方法和equals方法实现HashSe

作者: 今天庹 | 来源:发表于2018-10-15 13:50 被阅读0次

    重写hashCode方法和equals方法实现HashSet存储自定义对象去重

    package com.itheima_01;
    
    import java.util.HashSet;
    
    /*
     * 使用HashSet存储自定义对象并遍历
     * 通过查看原码发现:
     *          HashSet的add()方法,首先会使用当前集合中的每一个元素和新添加的元素进行比较,
     *          如果hash值不一样,则直接添加新的元素
     *          如果hash值一样,比较地址值或者使用equals方法进行比较
     *          比较结果一样则认为是重复不添加,
     *          所有的比较结果都不一样则添加
     */
    public class HashSetDemo2 {
        public static void main(String[] args) {
            //创建集合对象
            HashSet<Student> hs = new HashSet<Student>();
            //创建元素对象
            Student s = new Student("zhangsan",18);
            Student s2 = new Student("lisi",20);
            Student s3 = new Student("lisi",20);
            //添加元素对象
            hs.add(s);
            hs.add(s2);
            hs.add(s3);
            //遍历集合对象
            for (Student student : hs) {
                System.out.println(student);
            }
        }
    
    }
    
    class Student {
        String name;
        int age;
        
        public Student(String name, int age) {
            this.name = name;
            this.age = age;
        }
    
        @Override
        public String toString() {
            return "Student [name=" + name + ", age=" + age + "]";
        }
        
        @Override
        public boolean equals(Object obj) {
    //      System.out.println("------------");
            Student s = (Student)obj;//向下转型可以获取子类特有成员
            
            //比较年龄是否相等,如果不等则返回false
            if(this.age != s.age) {
                return false;
            }
            
            //比较姓名是否相等,如果不等则返回false
            if(this.name.equals(s.name)) {
                return false;
            }
            
            //默认返回true,说明两个学生是相等的
            return true;
        }
        
        @Override
        public int hashCode() {
            return 1;
        }
    }
    

    相关文章

      网友评论

        本文标题:04.重写hashCode方法和equals方法实现HashSe

        本文链接:https://www.haomeiwen.com/subject/myzzaftx.html