Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
11  
It got pushed to the next release unfortunately. – Johan Sjöberg Mar 26 '11 at 16:09
2  
Here is a closure implementation for Java 5, 6, and 7 mseifed.blogspot.se/2012/09/… – Hamidam Sep 29 '12 at 19:09

6 Answers

up vote 11 down vote accepted

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.

share|improve this answer
+1 That google talk is highly recommended. – Erick Robertson Sep 28 '12 at 15:55

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 final (and definitely assigned) local variables. (Note, even non-final local variables are in scope, but cannot be used.)

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.

share|improve this answer
Here is a closure implementation for Java 5, 6, and 7 mseifed.blogspot.se/2012/09/… It contains all one could ask for... i think it is pretty awesome – Hamidam Sep 29 '12 at 20:46

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

share|improve this answer

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

share|improve this answer

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...

share|improve this answer
It is pretty awesome actually! – Hamidam Apr 19 at 20:49

It is already in Java. You use class creation expressions or non-static inner classes to create them.

share|improve this answer
Can you please elaborate on the jargon. Or at least provide some references to what you stated. – Swaranga Sarma Mar 26 '11 at 16:40
@Swaranga - I assumed that you have read the Java Language Specification - if not, I'd suggest you do before dealing with such advanced topics. – Ingo Mar 26 '11 at 17:53
2  
@Swaranga: A closure combines state with a function pointer. Ingo is trying to imply that you can use inner classes as a form of closures. While not closures from a syntactic point of view, you can use inner classes in place of closures the same way you can use closures in place of objects because both can combine state with a function pointer. – Gabe Mar 26 '11 at 19:32
4  
Perhaps we disagree on the meaning of the question. To me he is clearly asking if there will be syntactic support for closure literals in Java 7, not whether Java 7 will allow you to associate state with functions. – Gabe Mar 26 '11 at 20:52
1  
downvoted because it is not constructive to post responses to ANY discussion site and then say stuff like "I assumed you have read the Java language specification"... – KyleM Apr 9 at 16:34
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.