What’s the current state of closures in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T04:50:17Zhttp://stackoverflow.com/feeds/question/116865http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/116865/whats-the-current-state-of-closures-in-java9What’s the current state of closures in Java?bwalliser2008-09-22T19:14:28Z2009-09-12T07:42:23Z
<p>Does anybody know, if closures will be in Java 7? </p>
http://stackoverflow.com/questions/116865/whats-the-current-state-of-closures-in-java/116910#11691017Answer by Alex Miller for What’s the current state of closures in Java?Alex Miller2008-09-22T19:20:52Z2009-02-10T20:58:02Z<p>It is unknown until the Java SE 7 JSR is created (presumably by Danny Coward) and an expert group is formed and the contents selected. </p>
<p>My Java 7 page is a good collection of links about Java 7 in general and has links to all of the closures proposals and blog entries:</p>
<p><a href="http://tech.puredanger.com/java7#closures" rel="nofollow">http://tech.puredanger.com/java7#closures</a></p>
<p>And I maintain a Java 7 link blog where you can find links on closures and other stuff at:</p>
<p><a href="http://java7.tumblr.com" rel="nofollow">http://java7.tumblr.com</a></p>
<p>And you might find my Java 7 Predictions blog post to be interesting as well if you want my opinions:
<a href="http://tech.puredanger.com/2008/08/02/java7-prediction-update/" rel="nofollow">http://tech.puredanger.com/2008/08/02/java7-prediction-update/</a></p>
<p>UPDATE: Mark Reinhold stated at Devoxx in Dec. 08 that closures will NOT be included in Java 7 due to a lack of consensus on how to implement. </p>
http://stackoverflow.com/questions/116865/whats-the-current-state-of-closures-in-java/116918#1169186Answer by sanity for What’s the current state of closures in Java?sanity2008-09-22T19:21:34Z2008-09-22T19:21:34Z<p>There are currently several competing proposals, <a href="http://www.javac.info/" rel="nofollow">BGGA</a>, <a href="http://www.javac.info/" rel="nofollow">CICE</a>, among others. Unfortunately, a heated debate remains over the best approach. As a result it is unlikely at this point that closures will make it into Java 7, due to the conservative nature of the acceptance process.</p>
<p>The key problem here is that it can be very difficult to add features to a pre-existing language, without inadvertently introducing significant complexity. This was the experience with Generics in Java 1.5, and many are concerned that it would be compounded with the introduction of closures.</p>
<p>My advice is that if you really want to have access to modern language features like closures, but wish to stay within the Java ecosysteym, you should take a look at <a href="http://www.scala-lang.org/" rel="nofollow">Scala</a>.</p>
http://stackoverflow.com/questions/116865/whats-the-current-state-of-closures-in-java/117091#1170913Answer by Bill James for What’s the current state of closures in Java?Bill James2008-09-22T19:47:50Z2008-09-22T19:47:50Z<p>Groovy is the best Java alternative I've seen that includes features of dynamic languages including closures, run-time class extension, etc. While Ruby has a slight design advantage imho, I'd have to say the fact that Groovy compiles into Java byte-code and interacts with Java without ANY interface code is a huge plus that can't be ignored.</p>
<p><a href="http://groovy.codehaus.org" rel="nofollow">http://groovy.codehaus.org</a></p>
http://stackoverflow.com/questions/116865/whats-the-current-state-of-closures-in-java/533063#5330632Answer by redder for What’s the current state of closures in Java?redder2009-02-10T16:31:36Z2009-02-10T16:31:36Z<p>Apparently Closures will not be in Java 7.
See <a href="http://rickyclarkson.blogspot.com/2008/12/java-just-died-no-closures-in-java-7.html" rel="nofollow">this</a>
and <a href="http://groups.google.com/group/javaposse/browse_thread/thread/a8994433180f5872" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/116865/whats-the-current-state-of-closures-in-java/1414571#14145710Answer by Mario Fusco for What’s the current state of closures in Java?Mario Fusco2009-09-12T07:42:23Z2009-09-12T07:42:23Z<p>Closure won't definitively be present in Java 7, but if you are looking for a lighter solution to have closure in java right now check out how they have been implemented in the lambdaj library:</p>
<p><a href="http://code.google.com/p/lambdaj/wiki/Closures" rel="nofollow">http://code.google.com/p/lambdaj/wiki/Closures</a></p>