黑马程序员技术交流社区
标题:
泛型的应用
[打印本页]
作者:
唐志海
时间:
2014-1-6 17:22
标题:
泛型的应用
本帖最后由 唐志海 于 2014-1-21 02:38 编辑
帮忙看下面的代码哪里出错了。。会发生NoSuchElementException异常
import java.util.Comparator;
import java.util.Iterator;
import java.util.TreeSet;
public class fanXingTest2
{
public static void main(String[] args)
{
TreeSet<Student> ts=new TreeSet<Student>(new comp());
ts.add(new Student("zhangsan",11));
ts.add(new Student("lishi3",14));
ts.add(new Student("lishi3",11));
ts.add(new Student("lishi2",11));
ts.add(new Student("lishi1",12));
printl(ts);
}
public static void printl(TreeSet<? extends Person> ts)
{
Iterator<? extends Person> it=ts.iterator();
while(it.hasNext())
{
System.out.println(it.next().getName()+"....."+it.next().getAge());
}
}
}
class comp implements Comparator<Person>
{
public int compare(Person p1,Person p2)
{
int num=p1.getName().compareTo(p2.getName());
if(num==0)
{
return new Integer(p1.getAge()).compareTo(new Integer(p2.getAge()));
}
return num;
}
}
class Person
{
private String name;
private int age;
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setAge(int age) {
this.age = age;
}
public int getAge() {
return age;
}
Person(String name,int age)
{
this.name=name;
this.age=age;
}
}
class Student extends Person
{
Student(String name,int age)
{
super(name,age);
}
}
复制代码
作者:
李兴
时间:
2014-1-6 18:31
看一下我的代码,注释中有解释
public class fanXingTest2
{
public static void main(String[] args)
{
TreeSet<Student> ts=new TreeSet<Student>(new comp());
ts.add(new Student("zhangsan",11));
ts.add(new Student("lishi3",14));
ts.add(new Student("lishi3",11));
ts.add(new Student("lishi2",11));
ts.add(new Student("lishi1",12));
printl(ts);
}
public static void printl(TreeSet<? extends Person> ts)
{
Iterator<? extends Person> it=ts.iterator();
while(it.hasNext())
{
/*建议你修改成这样的*/
Person p = it.next();
System.out.println(p.getName()+"....."+p.getAge());
//System.out.println(it.next().getName()+"....."+it.next().getAge());
/*你的错误在于上一条语句中,为了调用getName方法使用it.next()迭代元素
* 为了调用getAge语句又使用了it.next()迭代元素
* 所以这就造成了你的输出语句中的名字与年龄不一致
* 你的输出语句中有这么一条 lishi3.....14 这是明显错误的
*
* 造成异常的原因是,当it.next()得到第5条记录的姓名时,it.next()会接着迭代后面的记录,
* 因为只有5条记录,所以会报找不到第6条记录的异常
* */
}
}
}
class comp implements Comparator<Person>
{
public int compare(Person p1,Person p2)
{
int num=p1.getName().compareTo(p2.getName());
if(num==0)
{
return new Integer(p1.getAge()).compareTo(new Integer(p2.getAge()));
}
return num;
}
}
class Person
{
private String name;
private int age;
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setAge(int age) {
this.age = age;
}
public int getAge() {
return age;
}
Person(String name,int age)
{
this.name=name;
this.age=age;
}
}
class Student extends Person
{
Student(String name,int age)
{
super(name,age);
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2