HashSet集合的使用

43 篇文章 0 订阅

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

public classStudent {

 

    private String name;

    private int age;

   

    public Student() {

        super();

        // TODO Auto-generated constructor stub

    }

   

    public Student(String name, int age) {

        super();

        this.name = name;

        this.age = age;

    }

   

    public String getName() {

        return name;

    }

    public void setName(String name) {

        this.name = name;

    }

    public int getAge() {

        return age;

    }

    public void setAge(int age) {

        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());

        return result;

    }

 

    @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)

                return false;

        }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
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值