public interface Callback { public void tellAnswer(int answer); }
public class Teacher implements Callback { private Student student; public Teacher(Student student) { this.student = student; } public void askQuestion() { student.resolveQuestion(this); } @Override public void tellAnswer(int answer) { System.out.println("知道了,你的答案是" + answer); } }
public interface Student { public void resolveQuestion(Callback callback); }
public class Ricky implements Student { @Override public voidresolveQuestion(Callback callback) { // 模拟解决问题 try { Thread.sleep(3000); } catch (InterruptedException e) { } // 回调,告诉老师做业写了多久 callback.tellAnswer(3); } }
@Test public void testCallBack() { Student student = new Ricky(); Teacher teacher = new Teacher(student); teacher.askQuestion(); }
Student也能够使用匿名类定义,更加简洁:异步
@Test public void testCallBack2() { Teacher teacher = new Teacher(new Student() { @Override public void resolveQuestion(Callback callback) { callback.tellAnswer(3); } }); teacher.askQuestion(); }
Teacher 中,有一个解决问题的对象:Student,在Student中解决问题以后,再经过引用调用Teacher中的tellAnswer接口,因此叫回调
。ide
同步、异步调用测试
上面的例子是同步回调,下面介绍异步调用this
public interface Callback { void tellAnswer(int answer); }
public class Teacher implements Callback{ private Student student; public Teacher (Student student) { this.student = student; } public void askQuestion() { //student.resolveQuestion(this); //此处是同步回调。 new Thread(()-> student.resolveQuestion(this)).start(); //这里实现了异步,此处的this也能够用Teacher.this代替, // 若是不用lambda表达式,用匿名内部类建立new Runnable()则必定要用Teacher.this } @Override public void tellAnswer(int answer) { System.out.println("你的答案是:" + answer + "正确"); } }
public interface Student { public void resolveQuestion(Callback callback); }
public class Ricky implements Student { @Override public void resolveQuestion(Callback callback) { try { Thread.sleep(3000); } catch (Exception e) { e.printStackTrace(); } //回调,告诉老师问题的答案 callback.tellAnswer(3); } }
测试spa
public class CallbackTest { @Test public void testCallback() { Student student = new Ricky(); Teacher teacher = new Teacher(student); teacher.askQuestion(); System.out.println("end"); try { Thread.sleep(5000); } catch (InterruptedException e) { e.printStackTrace(); } } }
出处: .net
https://cloud.tencent.com/developer/article/1351239code
https://blog.csdn.net/qq_31617121/article/details/80861692对象