java HashSet实现自定义重复规则

该博客探讨了Java中的HashSet数据结构。通过一个示例展示了如何添加学生对象到HashSet中,强调了equals()和hashCode()方法在对象唯一性中的关键作用。内容包括创建Student类,覆盖equals()和hashCode()方法,以及在main方法中展示HashSet存储和迭代元素的过程。
摘要由CSDN通过智能技术生成

实现如下

package collection;
 
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
class Student{
	String name;
	int age;
	public Student(){}
	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;
	}
	public String toString(){
		return "   姓名: "+this.getName()+"   ,年龄:"
	           +this.getAge();
	}
	public boolean equals(Object obj){
		Student s=(Student) obj;
		return this.name.equals(s.name)&&this.age==s.age;
	}
	
	public int hashCode(){
		int code=this.name.hashCode()+age*7;
		return code;
	}
	
}
 
public class Ex5 {
	
public static void main(String[] args) {
	HashSet list=new HashSet();
	Student s1=new Student("wl",29);
	Student s3=new Student("wl",25);
	Student s4=new Student("wl",29);
	Student s5=new Student("wl",29);
	Student s2=new Student("www",28);
	Student s6=new Student("www",28);
	list.add(s1);
	list.add(s2);
	list.add(s3);
	list.add(s4);
	list.add(s5);
	list.add(s6);
	Iterator it=list.iterator();
	while(it.hasNext()){
		Object obj=it.next();
		System.out.println(obj+"\t");
	}
	System.out.println();
}
}

output:

   姓名: wl   ,年龄:29	
   姓名: wl   ,年龄:25	
   姓名: www   ,年龄:28	

核心:hashCode()和equals()的重写

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值