【接口】(2)接口回调(底层实现)

在这里插入图片描述
需求:实现按学生成绩升序排序(底层实现——接口回调)

1.接口:

/*
 * 接口/标准(排序)
 * 只有实现此接口的对象,才可以排序
 * */
public interface Comparable<T> {
	
	
	/*比较的方法
	 * this与传入的stu对象进行比较
	 * @param stu另一个学生对象
	 * @return 标准:正数 负数 零
	 * 负数:this靠前,stu靠后
	 * 正数:this靠后,stu靠前
	 * 零:不变
	 * 
	 * **/
	public int compareTo(T stu);//Student stu

}

2.工具:(接口使用者)

/*
 * 排序工具
 * 
 * */
public class Tool{
	
	/*排序方法
	 * 可以帮助任何类型的一组对象做排序
	 * */
	public static void sort(Student[] stus) {//tom 99 jack 98 annie 100
		for (int i = 0; i < stus.length-1; i++) {
			
			Comparable currentStu=(Comparable)stus[i];
			int n=currentStu.compareTo(stus[i+1]);//正数 this靠后  (接口的使用者) 抽象方法调用
			if(n>0) {
				//两值交换
				Student temp=stus[0];
				stus[0]=stus[1];
				stus[1]=temp;
			}
			
		}
	}

}

程序员(工具调用者+接口实现者)

/*接口回调
 * 程序员
 * 
 * */

public class TestCallback {
	public static void main(String[] args) {
		//需求:对一组学生对象排序
		Student[] students=new Student[] {new Student("tom",20,"male",99.0),
	   new Student("jack",21,"male",98.0),new Student("annie",19,"female",100.0)};
//		java.util.Arrays.sort(students);//错误 没有排序规则
		//想要升序还是降序
//		int n=students[0].compareTo(students[1]);//比较成绩,返回一个整数 1  -1 0
		
		//工具调用者
		Tool.sort(students);//默认升序
		
		for (int i = 0; i < students.length; i++) {
			System.out.println(students[i].name+"\t"+students[i].score);
		}

	}

}
class Student implements Comparable<Student>{//接口的实现者
	String name;
	int age;
	String sex;
	double score;
	public Student() {
		super();
	}
	public Student(String name, int age, String sex, double score) {
		super();
		this.name = name;
		this.age = age;
		this.sex = sex;
		this.score = score;
	}
	@Override
	public int compareTo(Student stu) {
		//升序
		if(this.score>stu.score) {//具体实现规则
			return 1;
		}else if(this.score<stu.score) {
			return -1;
		}
			return 0;
	}

	
}

运行结果:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值