Ste集合中关于Comparable接口的用法

Comparable接口和compareTo方法的使用

首先新建一个Student 成员变量必须用Private私有化,提供get\set方法间接访问,Student类继承Comparable接口,应为要实现自然排序功能.

import java.util.*;

public class Test10{

public static void main(String[] args){
//创建TreeSet集合存入5个对象
    TreeSet<Student_1> tr = new TreeSet<Student_1>();
    tr.add(new Student_1("张三",21,100));
    tr.add(new Student_1("李四",27,88));
    tr.add(new Student_1("王五",23,95));
    tr.add(new Student_1("小明",20,84));
    tr.add(new Student_1("李明",25,88));
    //遍历TreeSet集合
    Iterator it = tr.iterator();
    while(it.hasNext()){
        System.out.println(it.next());
    }

}

}
//定义一个学生类实现Comparable接口(自然排序排序)
class Student_1 implements Comparable{
//声明三个成员变量
private String name;
private int age;
private int score;

//提供set   get方法
public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}
public int getAge() {
    return age;
}
public void setAge(int age) {
    this.age = age;
}
public int getScore() {
    return score;
}
public void setScore(int score) {
    this.score = score;
}
//构造方法
Student_1(){}
Student_1(String name,int age,int score){
    this.name=name;
    this.age=age;
    this.score=score;
}
//比较方法
public int compareTo(Student_1 s) {
//先比较分数,分数相同则比较年龄
int n = this.score - s.score;
if(n != 0)
    return n;
else
    return this.age - s.age;

}
//重写toString方法
public String toString(){
return name+"  "+age+"  "+ score;
}

}

ComparaTo方法:在java中,如果要对集合对象或数组对象进行排序,需要实现Comparator接口以达到我们想要的目标。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值