Closures in Java
What i have heard and read about closures in Java until today was mostly about turning things like myExecutor.execute( new Runnable(){ public void run() } ); into something less verbose like myExecutor.execute( ); At this point, i admittedly thought ... Other labels:
java, java7, closure