定义一个TreeSet集合用来存储学生对象
时间: 2023-05-22 08:06:42 浏览: 96
好的,可以使用下面的代码来定义一个TreeSet集合来存储学生对象:
```
import java.util.*;
public class Student implements Comparable<Student> {
private String name;
private int age;
public Student(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
@Override
public int compareTo(Student s) {
if (this.age > s.getAge()) {
return 1;
} else if (this.age < s.getAge()){
return -1;
}
return 0;
}
public static void main(String[] args) {
TreeSet<Student> set = new TreeSet<Student>();
set.add(new Student("Tom", 20));
set.add(new Student("Jack", 18));
set.add(new Student("Lucy", 22));
for (Student s : set) {
System.out.println(s.getName() + " " + s.getAge());
}
}
}
```
上面的代码定义了一个Student类,实现了Comparable接口,重写了compareTo方法,用来比较学生对象的年龄大小,然后定义了一个TreeSet集合,将三个学生对象加入集合中,最后遍历集合并输出学生的姓名和年龄信息。
阅读全文