我是靠谱客的博主 害怕狗,最近开发中收集的这篇文章主要介绍【接口】(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;
	}

	
}

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

最后

以上就是害怕狗为你收集整理的【接口】(2)接口回调(底层实现)的全部内容,希望文章能够帮你解决【接口】(2)接口回调(底层实现)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部