java中的閉包與回調

來源:互聯網
上載者:User

 來自java編程思想:

閉包是一個可調用的對象,它記錄了一些資訊,這些資訊來自於建立他的範圍,用過這個定義 可以看出內部類是物件導向的閉包 因為他不僅包含外圍類對象的資訊 還自動擁有一個指向此外圍類對象的引用 在此範圍內 內部類有權操作所有的成員 包括private成員;

interface Incrementable
{
 void increment();
}

 

class Callee1 implements Incrementable
{
 private int i=0;
 public void increment()
 {
  i++;
  System.out.println(i);
 }
}

class MyIncrement
{
 void increment()
 {
  System.out.println("other increment");
 }
 static void f(MyIncrement mi)
 {
  mi.increment();
 }
}

class Callee2 extends MyIncrement
{
 private int i=0;
 private void incr()
 {
  i++;
  System.out.println(i);
 }
 private class Closure implements Incrementable
 {
  public void increment()
  {
   incr();
  }
 }
 Incrementable getCallbackReference()
 {
  return new Closure();
 }
}

class Caller
 {
  private Incrementable callbackRefference;
  Caller(Incrementable cbh)
  {
   callbackRefference = cbh;
  }
  void go()
  {
   callbackRefference.increment();
  }
 }

public class Callbacks
{
 public  static void main(String [] args)
 {
  Callee1 c1=new Callee1();
  Callee2 c2=new Callee2();
  MyIncrement.f(c2);
  Caller caller1 =new  Caller(c1);
  Caller caller2=new Caller(c2.getCallbackReference());
  caller1.go();
  caller1.go();
  caller2.go();
  caller2.go();
 }
}

輸出

other increment
1
2
1
2

Callee2繼承字MyIncrement 後者已經有一個不同的increment()方法 並且與Incrementable介面期望的increment()方法完全不相關 所以如果Callee2繼承了MyIncrement 就不能為了Incrementable的用途而覆蓋increment()方法 於是這能使用內部類獨立的實現Incrementable

內部類Closure實現了Incrementable 一提供一個放回Caller2的鉤子 而且是一個安全的鉤子 無論誰獲得此Incrementbale的引用 都只能調用increment() 除此之外沒有其他功能

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.