HashSet集合的使用

来源:互联网 发布:东北电力大学网络教学 编辑:程序博客网 时间:2024/06/01 07:52

/*存储自定义对象,并保证元素的唯一性*/

public classStudent {

 

    private Stringname;

    private int age;

   

    public Student() {

        super();

        // TODO Auto-generated constructor stub

    }

   

    public Student(Stringname, intage) {

        super();

        this.name =name;

        this.age =age;

    }

   

    public String getName() {

        returnname;

    }

    public void setName(String name) {

        this.name =name;

    }

    public int getAge() {

        returnage;

    }

    public void setAge(intage) {

        this.age =age;

    }

 

    @Override

    public int hashCode() {

        final int prime = 31;

        int result = 1;

        result = prime * result + age;

        result = prime * result + ((name ==null) ? 0 : name.hashCode());

        returnresult;

    }

 

    @Override

    public boolean equals(Object obj) {

        if (this ==obj)

            return true;

        if (obj ==null)

            return false;

        if (getClass() !=obj.getClass())

            return false;

        Studentother= (Student)obj;

        if (age !=other.age)

            return false;

        if (name ==null) {

            if (other.name !=null)

                returnfalse;

        }elseif(!name.equals(other.name))

            return false;

        return true;

    }

 

}


import java.util.HashSet;


/**
 * 需求:存储自定义对象,并保证元素的唯一性
 * 要求:如果两个对象的成员变量值都相同,则为同一个元素。
 * 
 * 目前是不符合我的要求的:因为我们饿知道HashSet底层依赖的是hashCode()和equals()方法
 * 而这两个方法我们在学生类中没有重写,所以,默认使用的是Object类的。
 * 这个时候,他们的哈希值是不一样的,根本就不会继续判断,执行了添加操作。
 */
public class HashSetDemo {


public static void main(String[] args) {
// TODO Auto-generated method stub


//创建集合对象
HashSet<Student> hs = new HashSet<Student>();
Student s1 = new Student("林青霞",27);
Student s2 = new Student("王祖贤",21);
Student s3 = new Student("柳岩",23);
Student s4 = new Student("林青霞",27);
Student s5 = new Student("范冰冰",32);
Student s6 = new Student("林青霞",27);

//添加元素
hs.add(s1);
hs.add(s2);
hs.add(s3);
hs.add(s4);
hs.add(s5);
hs.add(s6);

for(Student s : hs){
System.out.println(s.getName()+"---"+s.getAge());
}
}


}


运行结果:

范冰冰---32
王祖贤---21
柳岩---23
林青霞---27


0 0
原创粉丝点击