Map集合的实例对象中创建对象。然后通过Set集合获取

/**
每一个学生都是有对应的归属地‘
有自己的姓名和年龄
注意,姓名和年龄相同者视为同一学生

保证学生唯一性

描述学生,将学生作为键,地址作为值,存入Map集合。
   然后再获取学生。


思路:
新建学生类实现Comparable接口;

定义变量name,age,复写hashCode()方法、toString()方法、equals()方法。

复写compareTo方法

创建Map集合,并获取集合元素


*/

import java.util.*;
class MapAboutStudentInfo 
{
	public static void main(String[] args) 
	{
		HashMap maps=new HashMap();
		maps.put(new Student(23,"zhangsan"),"beijing");
		maps.put(new Student(30,"lisi"),"shanghai");
		maps.put(new Student(17,"wangwu"),"tianjing");

		Set> entryset=maps.entrySet();
		Iterator> it=entryset.iterator();
		while (it.hasNext())
		{
			Map.Entry entry=it.next();
			Student key=entry.getKey();
			String value=entry.getValue();
			System.out.println(key+"=="+value);
		}	
	}
	
		
}
class Student implements Comparable
{
	private int age;
	private String name;
	Student(int age,String name){
		this.age=age;
		this.name=name;
	}
	public int getAge(){
		return age;
	}
	public String getName(){
		return name;
	}
	//复写hashCode方法
	public int hashCode(){
		return name.hashCode()+age*34;
	}
	//复写toString方法
	public String toString(){
	return name+":"+age;
	}
	//复写equals方法
	public boolean equals(Object obj)
	{
		if (!(obj instanceof Student))
			throw new ClassCastException("类型不匹配。");

		Student s=(Student)obj;
		return this.name.equals(s.name)&&this.age==s.age;
	}

	public int compareTo(Student s){
		int num= new Integer(this.age).compareTo(new Integer(s.age));
		if (num==0)
		
			return this.name.compareTo(s.name);
			return num;
	}
}




你可能感兴趣的:(Comparable,Collection,Map,Java基础,板块)