黑马程序员技术交流社区
标题:
关于泛型的,还有compareTo的应用的问题?
[打印本页]
作者:
changchunhaha
时间:
2014-4-3 13:44
标题:
关于泛型的,还有compareTo的应用的问题?
本帖最后由 changchunhaha 于 2014-4-3 14:39 编辑
import java.util.*;
class MapEntry
{
public static void main(String[] args)
{
Map<Student,String> m = new HashMap<Student,String>();
m.put(new Student("zhangsan01",21),"shanghai");
m.put(new Student("zhangsan02",22),"beijing");
m.put(new Student("zhangsan03",23),"wuhan");
m.put(new Student("zhangsan04",24),"tianjin");
Set<Map.Entry<Student,String>> sme = m.entrySet();//我不明白泛型在这是怎么应用的?求大神帮助!!
Iterator<Map.Entry<Student,String>> it = sme.iterator();//我不明白泛型在这是怎么应用的?
while(it.hasNext())
{
Map.Entry<Student,String> me = it.next();
Student stu = me.getKey();
String addr = me.getValue();
System.out.println(stu+"............"+addr);
}
}
}
class Student
{
private String name;
private int age;
Student(String name,int age)
{
this.name=name;
this.age=age;
}
public String getName()
{
return name;
}
public int getAge()
{
return age;
}
public int hashCode()
{
return name.hashCode()+age*30;
}
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) //还有这个compareTo的代码不是太明白,有点读不懂,谁能帮忙说一下原理走向。谢谢!!!
{
int num = new Integer(this.age).compareTo(new Integer(s.age));
if(num==0)
return this.name.compareTo(s.name);
return num;
}
public String toString()
{
return name+"..."+age;
}
}
复制代码
作者:
osully
时间:
2014-4-3 14:10
Set<Map.Entry<K,V>> entrySet()
map 的 entrySet() 这个方法返回类型是Map.Entry
而Map.Entry<K,V> 这里的kv 就是你map集合定义的泛型......
此类中有getkey和getvalue方法取出键值,
如果你要知道原理建议可以自己看下源代码
作者:
changchunhaha
时间:
2014-4-3 14:13
osully 发表于 2014-4-3 14:10
Set entrySet()
map 的 entrySet() 这个方法返回类型是Map.Entry
谢谢!我就是有点没绕过来。
作者:
一年_Hei
时间:
2014-4-3 14:42
你这个类还得实现comparable的接口。compareTo是让对象具有比较性,你这方法的主条件是年龄,年龄相等的按姓名排序
作者:
血剑无痕
时间:
2014-4-3 15:20
compareTo比较此对象与指定对象的顺序。如果该对象小于、等于或大于指定对象,则分别返回负整数、零或正整数所以该方法让对对象具有了比较性同样也可以重写该方法。
注意:此类具有与 equals 不一致的自然排序
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2