What is closure? It is supposed to be included in Java 7. Can anyone please provide me with some reliable references from where I can learn stuff about closures?
|
|
Here is the Neal Gafter's blog one of the pioneers introducing closures in Java. On his blog there is lots of information to get you started as well as videos. And in here is an excellent Google talk Advanced Topics In Programming Languages - Closures For Java with Neal Gafter as well. |
|||
|
|
|
A closure is a block of code that can be referenced (and passed around) with access to the variables of the enclosing scope. Since Java 1.1, anonymous inner class have provided this facility in a highly verbose manner. They also have a restriction of only being able to use Java SE 8 is intended to have a more concise version of this for single-method interfaces*, called "lambdas". Lambdas have much the same restrictions as anonymous inner classes, although some details vary randomly. Lambdas are being developed under Project Lambda and JSR 335. *Originally the design was more flexible allowing Single Abstract Methods (SAM) types. Unfortunately the new design is less flexible, but does attempt to justify allowing implementation within interfaces. |
||||
|
|
Please see this wiki page for definition of closure. And this page for closure in Java 8: http://mail.openjdk.java.net/pipermail/lambda-dev/2011-September/003936.html Also look at this Q&A: Closures in Java 7 |
||||
|
|
|
Java Closures are going to be a part of J2SE 8 and is set to be released by the end of 2012. Java 8's closures support include the concept of Lambda Expressions, Method Reference, Constructor Reference and the Default Methods. For more information and working examples for this please visit: http://amitrp.blogspot.in/2012/08/at-first-sight-with-closures-in-java.html |
||||
|
|
|
A closure implementation for Java 5, 6, and 7 http://mseifed.blogspot.se/2012/09/closure-implementation-for-java-5-6-and.html It contains all one could ask for... |
|||
|
|
|
It is already in Java. You use class creation expressions or non-static inner classes to create them. |
|||||||||||||||||
|