A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. /*有五个学生,每个学生有3门课的成绩
  2. * 从键盘输入以上数据(包括姓名,三门课成绩),
  3. * 输入的格式:如:zhangsan,30,40,60计算出总成绩,
  4. * 并把学生的信息和计算出的总分数高低顺序存放在磁盘文件“stud.txt”中
  5. *
  6. * 1,描述学生对象
  7. * 2,定义一个可操作学生对象的工具类
  8. *
  9. *
  10. * 思想:
  11. * 1,通过获取键盘录入一行数据,并将该行中的信息取出封装成学生对象
  12. * 2,因为学生有很多,那么就需要存储,使用到集合。因为要对学生的总分排序,
  13. * 所以可以使用TreeSet
  14. * 3,将集合的信息写入到一个文件中
  15. */

  16. package day21;
  17. import java.io.*;
  18. import java.util.*;
  19. class Student implements Comparable<Student>
  20. {
  21.         private String name;
  22.         private int ma,cn,en;
  23.         private int sum;
  24.         Student(String name,int ma,int cn,int en)
  25.         {
  26.                 this.name = name;
  27.                 this.ma = ma;
  28.                 this.cn = cn;
  29.                 this.en = en;
  30.                 sum = ma +cn+en;
  31.         }
  32.         public int compareTo(Student s)
  33.         {
  34.                 int num = new Integer(this.sum).compareTo(new Integer(s.sum));
  35.                 if(num==0)
  36.                         return this.name.compareTo(s.name);
  37.                 return num;
  38.         }
  39.         public String getName()
  40.         {
  41.                 return name;
  42.         }
  43.         public int getSum()
  44.         {
  45.                 return sum;
  46.         }
  47.         public int hashCode()
  48.         {
  49.                 return name.hashCode()+sum*78;
  50.         }
  51.         public boolean equals(Object obj)
  52.         {
  53.                 if(!(obj instanceof Student))
  54.                         throw new ClassCastException("类型不匹配");
  55.                 Student s = (Student)obj;
  56.                 return this.name.equals(s.name)&&this.sum==s.sum;
  57.         }
  58.         public String toString()
  59.         {
  60.                 return "Student["+name+","+ma+","+cn+","+en+"]";
  61.         }
  62. }
  63. class StudentInfoTool
  64. {
  65.         public static Set<Student> getStudents() throws IOException
  66.         {
  67.                 return getStudents(null);
  68.         }
  69.         public static Set<Student> getStudents(Comparator<Student> cmp) throws IOException
  70.         {
  71.                 BufferedReader bufr =
  72.                                 new BufferedReader(new InputStreamReader(System.in));
  73.                 String line = null;
  74.                 Set<Student> stus = null;
  75.                 if(cmp==null)
  76.                         stus = new TreeSet<Student>();
  77.                 else
  78.                         stus = new TreeSet<Student>(cmp);
  79.                 while((line=bufr.readLine())!=null)
  80.                 {
  81.                         if("over".equals(line))
  82.                         break;
  83.                 String[] info = line.split(",");
  84.                 Student stu = new Student(info[0],Integer.parseInt(info[1]),
  85.                                 Integer.parseInt(info[2]),Integer.parseInt(info[3]));
  86.                 stus.add(stu);
  87.                 }
  88.             bufr.close();
  89.             return stus;
  90.         }
  91.           public static void write2File(Set<Student> stus) throws IOException
  92.           {
  93.                   BufferedWriter bufw = new BufferedWriter(new FileWriter("stuinfo.txt"));
  94.                   for(Student stu : stus)
  95.                   {
  96.                           bufw.write(stu.toString()+"\t");
  97.                           bufw.write(stu.getSum()+"");
  98.                           bufw.newLine();
  99.                           bufw.flush();
  100.                   }
  101.                   bufw.close();
  102.           }
  103. }

  104. class StudentInfoTest
  105. {
  106.         public static void main(String[] args) throws IOException
  107.         {
  108.                 Comparator<Student> cmp = Collections.reverseOrder();
  109.                 Set<Student> stus = StudentInfoTool.getStudents(cmp);
  110.                 StudentInfoTool.write2File(stus);
  111.         }

  112. }
复制代码
对这个例子不是很理解,获取学生信息时定义了2个方法,一个用指定比较器,一个用默认方法比较,具体使用哪个,怎么调用的,求哪个大神讲解下,谢谢

评分

参与人数 1技术分 +1 收起 理由
黄炳期 + 1

查看全部评分

3 个回复

倒序浏览
TreeSet集合本身具有比较性,元素按自然顺序进行排序,但是如果我们想要集合中的元素不按默认的顺序就行排序,那我们就需要去给它设定顺序
这个设定的方法有两种,
一种是改变TreeSet自身的比较性,实现Comparator接口,可以让Set对象按照特定的比较方法排序,
另一种是让存进集合的对象具有比较性,让存进集合的对象实现Comparable接口,并复写compareTO()方法

评分

参与人数 1技术分 +1 收起 理由
黄炳期 + 1

查看全部评分

回复 使用道具 举报
因为TreeSet能自动排序,因为它实现了Comparable接口,重写了compareTO()方法。然后你重写了这个compareTO方法,
  1. public int compareTo(Student s)

  2.         {

  3.                 int num = new Integer(this.sum).compareTo(new Integer(s.sum));

  4.                 if(num==0)

  5.                         return this.name.compareTo(s.name);

  6.                 return num;

  7.         }

复制代码
希望TreeSet按照总分成绩来排序,所以就把里面的compareTo方法覆盖了。
要弄明白你为什么要覆盖compareTO方法,因为你不想默认排序,想按照sum大小排序。

评分

参与人数 1技术分 +1 收起 理由
黄炳期 + 1

查看全部评分

回复 使用道具 举报
帖子已分类,若仍有疑惑,可重新提问
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马