vote up 5 vote down star
4

Java SE 7 is the next major release for Java SE.

The details are sketchy, same goes for timelines, although Alex Miller has a nice round-up, and generally a good place to start.

Also, here is a summary of Java 7 update by Mark Reinhold, cheif engineer for Java SE.

So, what major features scheduled for release are you looking forward to?

flag

Duplicate of stackoverflow.com/questions/214289 – Jon Skeet Jan 20 at 11:45
(Albeit with an update on what might actually be in it.) – Jon Skeet Jan 20 at 11:47
Darn, I was comwiki adding the options from that page for people to vote up as they desired, but as it's a duplicate ... – JeeBee Jan 20 at 11:48
"So, what major features scheduled for release are you looking forward to?" -- AFAIK, there aren't yet any features scheduled for release. The only thing that is known at this point is which features are not scheduled for release, closures being one of them. – Jörg W Mittag Jan 20 at 13:43

13 Answers

vote up 9 vote down check

Well with the removal of closures, extension methods, first-class properties and reified generics... not a lot.

Seriously, what's the point?

link|flag
Wow. I did not know they were removing that much. – unforgiven3 Jan 20 at 13:32
1  
Removed from what? – Tom Hawtin - tackline Jan 20 at 13:57
I think modularization and stability are great points. For the cool stuff, there are many great other languages on the JVM. – Fabian Steeg Jan 20 at 20:07
You should change the answer. Someone might think, features were removed from Java. – ivan_ivanovich_ivanoff Jun 20 at 21:21
1  
They were removed... from the proposed feature list and the list of JDK 7 JSRs. – cletus Jun 20 at 23:28
vote up 11 vote down

Multi-catch - (yes!) allows a comma seperated list of disjunctive exception types in catch clause.

link|flag
vote up 7 vote down

The new date/time API inspired by Joda Time: JSR-310

link|flag
I believe I've heard on the Java Posse that there is some issue and it is not clear if that is going to go into Java 7. – Fabian Steeg Jan 20 at 19:48
Steeg: if that's true, then that's very, very sad. Java needs a new Time/Date API! And JSR-310 looks really good (especially compared with what we've got now). – Joachim Sauer Jan 20 at 20:18
Totally, and I believe it was a small issue they were talking about, nothing that sounded like it could not be fixed in time. – Fabian Steeg Jan 20 at 20:25
vote up 4 vote down

Better type inference - Example around generics instantiations, but it was not clear how far the inference would be taken (the more the better in my opinion).

link|flag
vote up 4 vote down

Type Annotations (JSR 308), e.g. to define a list of strings which must not be null:

List<@NonNull String>
link|flag
In my view the benefit of this feature does not outweigh its cost in terms of readability. In my view, @NonNull should only be allowed on method parameters. – Gili Jan 24 at 16:27
I think the benefit is enormous: static analysis could infer that you might be placing null values into collections of which you assume they contain only non-nulls. This would save us from many bugs, and in particular from many null checks all over. – Fabian Steeg Jan 24 at 16:35
vote up 3 vote down

Well... I won't be looking for closures, they're out.

Module system is the runner up.

link|flag
vote up 3 vote down

Null dereference expressions - Null checks with '?' syntax similar to Groovy... letting developers avoid a nest of null checks.

link|flag
vote up 1 vote down

Closures would have been the biggest deal for me.

However, with the proliferation of JVM languages like Groovy and Scala, the features and speed of development of those languages means I find it very hard to actually get worked up about anything in mainstream Java.

Admittedly I think that's how it should be, and I see Java going more conservative now, consolidating its existing position rather than pushing for more features. I'm happy to use Scala for closures and actors and case classes and pattern matching and promoted immutability, rather than demanding that Java copy these ideas.

link|flag
vote up 1 vote down

More New I/O APIs (JSR 203 aka the new new IO).

link|flag
vote up 1 vote down

Removal of old deprecated code. Modular system so that we can strip out unwanted packages Further HotSpot improvements

In other words: Lets just get something simple out and lets talk about closures etc for the next release!!

link|flag
There is very little deprecated code. – Tom Hawtin - tackline May 19 at 0:24
vote up 0 vote down

Safe rethrow - Allows a broad catch clause, with the compiler being smarter on what you're allowed to rethrow based on what is thrown from the try block. (I had not seen this before but it looks nice)

link|flag
vote up 0 vote down

MigLayout in the JDK :)

link|flag
2  
Please NO! MigLayout is lucky to be outside of JDK... it can be improved much faster this way. – Peter Štibraný Jan 20 at 12:12
vote up 0 vote down

Better support for dynamic languages for an even better JRuby and other dyn. lang. implementations will be nice.

link|flag
Closures weren't changing the VM, so hardly a problem for other languages. – Tom Hawtin - tackline Jan 20 at 13:58
Thanks, I should have known. – Jonas Elfström Jan 20 at 19:25

Your Answer

Get an OpenID
or

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