/*学生信息键盘输入成绩并反转比较器进行降序排列存入TreeSet写入文件示例
有五个学生,每个学生有3门课的成绩,
从键盘输入以上数据(包括姓名,三门课成绩),
输入的格式:如:zhangsan,30,40,60 计算出总成绩,
并把学生的信息和计算出的总分数高低顺序存放在磁盘文件"stud.txt"中.
1,描述学生对象.
2,定义一个可操作学生对象的工具类
思想:
1,通过获取键盘录入一行数据,并将该行中的信息取出封装成学生对象
2,因为学生有很多,那么就需要存储,使用到集合,因为要对学生的总分进行排序.
所以可以使用TreeSet. 染有映射关系,所以不用map
3,将集合的信息写入到一个文件中.
*/
import java.io.*;
import java.util.*;
class Student implements Comparable<Student>
{
private String name;
private int ma,cn,en;
private int sum;
Studen(String name,int ma,int cn,int en)
{
this.name = name;
this.ma = ma;
this.cn = cn;
this.en = en;
sum = ma +cn +en;
}
public int compareTo(Student s )//implements 实现Comparable接口,必须重写compareTo()方法,排序用到的必须方法
{
int num = new Integer(this.sum).comparteTo(new Integer(s.sum));//返回1,0,-1值,this调用者,s被比较者
if (num ==0)//如果sum相等
return this.name.compareTo(s.name);//则比较name
return num;
}
public String getName()
{
return name;
}
public int getSum()
{
return sum;
}
public int hashCode()
{
return name.hashCode()+sum*78;
}
public boolean equals(Object obj)//重写equals()方法,排序必须用到,为了判断相等
{
if(!(obj instanceof Student))
throw new ClassCastException("类型不匹配");//RumtimeException子类
Student s= (Student)obj;//类型强制转换
return this.name.equals(s.name) && this.sum==s.sum;
}
public String toString()
{
return "student["+name+","+ma+","+cn+","+en+"]";
}
}
class StudentInfoTool<T>//工具类
{
public static Set<Student> getStudents() throws IOException//按默认排序
{
return getStudents(null);//不需要比较器,直接调用下面的getStudents()方法
}
public static Set<Student> getStudents(Comparator<Student> cmp) throws IOException//按比较器排序,传入比较器
{
BufferedReader bufr =
new BufferedReader(new InputStreamReader(system.in));//读取键盘
String line = null;
Set<Student> stus = null;
if(cmp == null)
stus = new TreeSet<Student>();//如果比较器为null,创建不带比较器的集合
else
stus = new TreeSet<Student>(cmp);//按比较器排序,不按默认排序 ,声明并实例化TreeSet stus
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[2]),//字符串转换为整数
Integer.parseInt(info[3]));//取得对象
stus.add(stu);//添加进TreeSet,二叉树已经排序
}
return stus;
}
public static void Write2File(Set<Student stus>) throws IOException//写入文件
{
BufferedWriter bufw = new BufferedWriter(new FileWriter("stuinfo.txt"))//目的
for (Student stu : stus )//遍历集合
{
bufw.write(stu.toString()+"\t");//return "student["+name+","+ma+","+cn+","+en+"]"; \t是空8格 制表符
bufw.write(stu.getSum()+"");//+""是要整数转换成字符,因为整数显示后8位,\n会变问号,加""才会正常显示
bufw.newLine();//换行
bufw.flush();//刷新
}
bufw.close();
}
}
class StudentInfoTest
{
public static void main(String[] args) throws IOException
{
Comparator<Student> cmp = Collection.reverseOrder();//Collection的reverseOrder()反转顺序方法,可以强行逆转比较器
Set<Student> stus = StudentInfoTool.getStudents();
StudentInfoTool.write2File(stus);
}
}
学生信息键盘输入成绩并反转比较器进行降序排列存入TreeSet写入文件示例
最新推荐文章于 2023-05-21 21:16:24 发布
本文介绍了一个学生信息管理系统的设计与实现,系统能够接收键盘输入的学生姓名及三门课程的成绩,计算总分,并将学生信息按照总分降序排列后存储到文件中。通过使用TreeSet集合与自定义的Student类,实现了对学生数据的有效管理和持久化存储。
摘要由CSDN通过智能技术生成