标题: 需求:键盘录入5个学生的信息 [打印本页] 作者: 武超0902 时间: 2015-10-5 22:11 标题: 需求:键盘录入5个学生的信息 public class Student {
private String name;
private int chinese;
private int math;
private int english;
private int sum;
public Student() {
super();
}
public Student(String name, int chinese, int math, int english) {
super();
this.name = name;
this.chinese = chinese;
this.math = math;
this.english = english;
this.sum = this.chinese + this.math + this.english;
}
public int getSum() {
return sum;
}
public String toString() {
return name + "," + chinese + "," + math + "," + english + "," + sum;
}
}
测试类的内容:
package com.heima.test;
import java.util.Comparator;
import java.util.Scanner;
import java.util.TreeSet;
import com.heiam.bean.Student;
public class Test7 {
/**
* * A:案例演示
* 需求:键盘录入5个学生信息(姓名,语文成绩,数学成绩,英语成绩),按照总分从高到低输出到控制台。
*
* 分析:
* 1,定义一个学生类
* 成员变量:姓名,语文成绩,数学成绩,英语成绩,总成绩
* 成员方法:空参,有参构造,有参构造的参数分别是姓名,语文成绩,数学成绩,英语成绩
* toString方法,在遍历集合中的Student对象打印对象引用的时候会显示属性值
* 2,键盘录入需要Scanner,创建键盘录入对象
* 3,创建TreeSet集合对象,在TreeSet的构造函数中传入比较器,按照总分比较
* 4,录入五个学生,所以以集合中的学生个数为判断条件,如果size是小于5就进行存储
* 5,将录入的字符串切割,用逗号切割,会返回一个字符串数组,将字符串数组中从二个元素转换成int数,
* 6,将转换后的结果封装成Student对象,将Student添加到TreeSet集合中
* 7,遍历TreeSet集合打印每一个Student对象
*/
public static void main(String[] args) {
//2,键盘录入需要Scanner,创建键盘录入对象
Scanner sc = new Scanner(System.in);
System.out.println("请输入学生成绩格式是:姓名,语文成绩,数学成绩,英语成绩");
//3,创建TreeSet集合对象,在TreeSet的构造函数中传入比较器,按照总分比较
TreeSet<Student> ts = new TreeSet<>(new Comparator<Student>() {
@Override
public int compare(Student s1, Student s2) {
int num = s2.getSum() - s1.getSum();
return num == 0 ? 1 : num;
}
});
//4,录入五个学生,所以以集合中的学生个数为判断条件,如果size是小于5就进行存储
while(ts.size() < 5) {
//5,将录入的字符串切割,用逗号切割,会返回一个字符串数组,将字符串数组中从二个元素转换成int数,
String line = sc.nextLine();
String[] arr = line.split(",");
int chinese = Integer.parseInt(arr[1]);
int math = Integer.parseInt(arr[2]);
int english = Integer.parseInt(arr[3]);
//6,将转换后的结果封装成Student对象,将Student添加到TreeSet集合中
ts.add(new Student(arr[0], chinese, math, english));
}
//7,遍历TreeSet集合打印每一个Student对象
System.out.println("排序后的学生信息:");
for (Student s : ts) {
System.out.println(s);
}
}
}