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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

/*
有五个学生,每个学生有三门课的成绩
从键盘输入以上数据(包括姓名,三门课成绩)
输入格式:如zhangsan,30,40,60计算出总成绩
并把学生的信息和计算出的总分数从高到低存放在磁盘文件"stud.txt"中

1:描述学生对象
2:定义一个可操作学生对象的工具类

思路:
1:通过获取键盘录入一行数据,并将该行中的信息取出封装成学生对象
2:因为学生有很多,那么就需要存储,使用到了集合,因为要对学生的总分排序
        所以可以使用TreeSet
        3:将集合的信息写入到一个文件中。
*/
import java.io.*;
import java.util.*;
class Student implements Comparable<Student>
{
        private String name;
        private int ch,ma,en,sum;
        Student(String name,int ch,int ma,int en)
        {
                this.name = name;
                this.ch = ch;
                this.ma = ma;
                this.en = en;
                sum = ch+ma+en;
        }
        public int compareTo(Student s)
        {
                int num = new Integer(this.sum).compareTo(new Integer(s.sum));
                if(num==0)
                        return this.name.compareTo(s.name);
                return num;
        }
        public int getSum()
        {
                return sum;
        }
        public  String getName()
        {
                return        name;
        }
        public int hashCode()
        {
                return name.hashCode+sum*39;
        }
        public boolean equals(Object obj)
        {
                if(!(obj instanceof Student))
                        throw new ClassCastException("类型不匹配,无法比较");//ClassCastException是RuntimeException子类
                Student s=(Student)obj;
                return this.name.equals(s.name)&&this.sum==s.sum;
        }
        public String toString()
        {
                return "Student["+name+", "+ch+", "+ma+", "+ch+"]";
        }
}
class studentInfoTool
{
        public static Set<Student> getStudents()throws IOException
        {
                BufferedReader bufr = new BufferedReader(new InputStreamReader(System.in));
                String line =null;

                Set<Student> stus=new TreeSet<Student>();
                while((line=bufr.readLine())!=null)
                {
                        if("over".equals(line))
                                break;
                        String[] info = line.split(",");
                        Student stu = new Student(info[0],Integer.parseInt(info[1]),
                                                                                                Integer.parseInt(info[1]),
                                                                                                Integer.parseInt(info[1]));

                        stus.add(stu);
                }
                bufr.close();
                return stus;
        }
        //将学生信息写入文本中
        public static void write2File(Set<Student> stus)throws IOException
        {
                BufferedWriter bufw=new BufferedWriter(new FileWriter("stus.txt"));
                for(Student stu: stus)
                {
                        bufw.write(stu.toString()+"\t");
                        bufw.write(stu.getSum());
                        bufw.newLine();
                        bufw.flush();
                }
                bufw.close();
        }
}
class StudentInfoTest
{
        public static void main(String[] args)throws IOException
        {
                Set<Student> stus = studentInfoTool.getStudents();
                studentInfoTool.write2File(stus);
        }
}

评分

参与人数 1黑马币 +2 收起 理由
乔兵 + 2

查看全部评分

2 个回复

倒序浏览
name.hashCode+sum*39;
目测这一行的问题吧,hashCode()是方法,不是属性吧~~~
name.hashCode()+sum*39;
自己多调试一下吧
回复 使用道具 举报
本帖最后由 麦者 于 2013-11-6 17:25 编辑

Student 中的构造函数中:this.sum = ch+ma+en;比较hash值得地方name.hashCode()+sum*39;输入内容得到的文件内容如下:
Student[a, 12, 12, 12]        $
Student[b, 13, 13, 13]        '
Student[e, 16, 16, 16]        0
Student[c, 23, 23, 23]        E
Student[d, 23, 23, 23]        E


  1.         Student(String name,int ch,int ma,int en)
  2.         {
  3.                 this.name = name;
  4.                 this.ch = ch;
  5.                 this.ma = ma;
  6.                 this.en = en;
  7.                 this.sum = ch+ma+en;
  8.         }
  9.       
  10.         public int hashCode()
  11.         {
  12.                 return name.hashCode()+sum*39;
复制代码

评分

参与人数 1技术分 +1 收起 理由
乔兵 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马