Menurut Tom Hawtin
Closure adalah blok kode yang dapat direferensikan (dan diedarkan) dengan akses ke variabel lingkup yang melingkupinya.
Sekarang saya mencoba untuk meniru contoh penutupan JavaScript di Wikipedia , dengan terjemahan " lurus " ke Java, dengan harapan dapat berguna:
//ECMAScript
var f, g;
function foo() {
var x = 0;
f = function() { return ++x; };
g = function() { return --x; };
x = 1;
print('inside foo, call to f(): ' + f()); // "2"
}
foo();
print('call to g(): ' + g()); // "1"
print('call to f(): ' + f()); // "2"
Sekarang bagian java: Function1 adalah antarmuka "Functor" dengan arity 1 (satu argumen). Penutupan adalah kelas yang mengimplementasikan Function1, Functor konkret yang bertindak sebagai fungsi (int -> int). Dalam metode main () saya hanya memberi contoh foo sebagai objek Penutupan, mereplikasi panggilan dari contoh JavaScript. Kelas IntBox hanyalah wadah sederhana, ini berperilaku seperti array 1 int:
ke dalam [1] = {0}
interface Function1 {
public final IntBag value = new IntBag();
public int apply();
}
class Closure implements Function1 {
private IntBag x = value;
Function1 f;
Function1 g;
@Override
public int apply() {
// print('inside foo, call to f(): ' + f()); // "2"
// inside apply, call to f.apply()
System.out.println("inside foo, call to f.apply(): " + f.apply());
return 0;
}
public Closure() {
f = new Function1() {
@Override
public int apply() {
x.add(1);
return x.get();
}
};
g = new Function1() {
@Override
public int apply() {
x.add(-1);
return x.get();
}
};
// x = 1;
x.set(1);
}
}
public class ClosureTest {
public static void main(String[] args) {
// foo()
Closure foo = new Closure();
foo.apply();
// print('call to g(): ' + g()); // "1"
System.out.println("call to foo.g.apply(): " + foo.g.apply());
// print('call to f(): ' + f()); // "2"
System.out.println("call to foo.f.apply(): " + foo.f.apply());
}
}
Ini mencetak:
inside foo, call to f.apply(): 2
call to foo.g.apply(): 1
call to foo.f.apply(): 2