vote up 11 vote down star
3

I have heard that closures could be introduced in the next Java standard that is scheduled to be released somewhere around next summer.

What would this syntax look like?

I read somewhere that introducing closures in java is a bigger change than generic was in java 5. Is this true? pros and cons?

(By now we definitely know that closures not will be included in the next Java release)

OR

edit: http://puredanger.com/tech/2009/11/18/closures-after-all/ :D

flag

4  
Right now I'm more interested in Scala than in whatever new language features Java might have in the near future - Scala et al. already has them and they are better tied into the language than Java can ever be. I think it's time to move on to newer languages with less historical baggage. – Esko Luontola May 4 at 23:52
1  
Advancement of the JVM as a platform for other languages is more important. Reified generics would be a blessing. – Esko Luontola May 4 at 23:53

8 Answers

vote up 7 vote down check

Have a look at http://www.javac.info/ .

It seems like this is how it would look:

boolean even = { int x => x % 2 == 0 }.invoke(15);

where the { int x => x % 2 == 0 } bit is the closure.

link|flag
Correct me if I'm wrong but a closure needs an open term (read free variable) per se to be a closure :) (?) – Roger Nov 19 at 21:05
vote up 8 vote down

It really depends on what gets introduced, and indeed whether it will be introduced at all. There are a number of closure proposals of varying sizes.

See Alex Miller's Java 7 page for the proposals and various blog posts.

Personally I'd love to see closures - they're beautiful and incredibly helpful - but I fear that some of the proposals are pretty hairy.

link|flag
vote up 3 vote down

This is the java 7 features http://tech.puredanger.com/java7/#switch the examples are very usefull.

link|flag
vote up 2 vote down

Note that a "function-type" is really a type under the proposal:

{int => boolean} evaluateInt;    //declare variable of "function" type
evaluateInt = {int x => x % 2 }; //assignment
link|flag
vote up 3 vote down

I think there is still a lot of debate going in with regards to what syntax will ultimately be used. I'd actually be pretty surprised if this does make it into Java 7 due to all of that.

link|flag
vote up 5 vote down

I heard (possibly on the JavaPosse podcast) that closures are definitely off the table for Java 7. IIRC, the reason is that a module system is definitely on the table, and they don't want to make too many infrastructural/language-level changes simultaneously.

If you want to learn more about why closures are useful, check out Groovy (e.g. chapter 5 of 'Groovy in Action'). Syntactically, the proposal in Java and the implementation in Groovy look fairly similar.

link|flag
1  
That is what I've heard as well. Hence the small language changes (aka Project Coin - openjdk.java.net/projects/coin) project. – Brian Yarger May 4 at 23:29
vote up 1 vote down

Closures have some serious edge cases. I would say that Closures are a much more significant change than Generics and the later still has a number hairy edge cases. e.g. The Java Collections libraries cannot be written/compiled without warnings.

link|flag
I'd say that's more of a problem with Java's implementation of generics than with the concept of generics itself. – bcat Nov 19 at 21:03
I agree. It now appears that a simplified form of Closures will be in a very delayed Java 7. – Peter Lawrey 2 days ago
vote up -1 vote down

Unofortunately you will not find closure in Java 7. If you are looking for a lighter solution to have closure in java just now check out the lambdaj project:

http://code.google.com/p/lambdaj/

link|flag

Your Answer

Get an OpenID
or

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