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對象