Possible Duplicate:
What new features in java 7 do you find most useful?

What are some features that you like in the next version of Java?

link|improve this question
2  
Closures are in Java 1.1... – Tom Hawtin - tackline Jul 4 '09 at 17:03
Sorry, removed closure as I mistakenly thought they would be in following some article I saw. Wishful thinking. – ripper234 Jul 4 '09 at 17:19
please reopen, this is a very interesting question, perhaps a community wiki one – dfa Jul 4 '09 at 18:07
2  
Duplicate of stackoverflow.com/questions/214289/…, stackoverflow.com/questions/460938/…, maybe others – Jonik Jul 6 '09 at 13:25
show 2 more comments
feedback

closed as exact duplicate by Rob Hruska, Pascal Thivent, Will Aug 27 '10 at 10:21

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

7 Answers

Since closures will -- as far as I know -- not be in Java 7, I'm not particularly interested in Java 7, anymore. I will probably use more alternative languages on the JVM like Scala or JRuby.

However, some Project Coin enhancements are nice (see also), e.g.

  • multi-catching of exceptions
  • Indexing syntax for lists and maps
  • Collection literals
  • Large arrays: When lsts of server have 16 GB+ memory and int slowly gets to small.
  • "invokedynamic": New operation to better support dynamic languages on the JVM

Edit: It should be noted that some kind of closures will be in Java 7 (should it ever be released)

link|improve this answer
8  
Totally agree. Without closures, Java 7 is completely irrelevant. – Apocalisp Jul 6 '09 at 20:27
1  
Large arrays and multi-catch are out, apparently: blogs.sun.com/darcy/entry/project_coin_final_five – Stu Thompson Sep 29 '09 at 13:01
Anyone know what the collection literal syntax would be? Same as array literal? – TM. May 4 '10 at 17:37
What does this mean then? tech.puredanger.com/java7/#closures It says "YES" next to it? Too bad. I was looking forward to closures. – Vivin Paliath Aug 26 '10 at 20:54
feedback

I'm looking forward to a decent date and time API being in the core libraries, so there's no excuse to use Date and Calendar any more (other than backward compatibility). Admittedly that's a library feature rather than language.

If the resource disposal feature gets in there - the equivalent of C#'s using statement - that will be really handy. Admittedly I'd really like closures in there as well, but introducing closures into Java is complicated by checked exceptions :(

link|improve this answer
I agree, the Date implementation in Java's library is atrocious... especially if you are used to using .Net – jle Jul 4 '09 at 17:00
The .NET APIs are nothing to crow about though - particularly before .NET 3.5, when we finally got non-local, non-UTC time zone support. It still doesn't really support the different ideas of an instant, local date, local time, duration etc. Joda Time is complicated, but only because the subject matter is inherently complicated. – Jon Skeet Jul 4 '09 at 17:02
Looks likes the JSR spec lead is too busy to complete it before Java SE 7 deadline. I <3 JCP. – Tom Hawtin - tackline Jul 4 '09 at 17:05
I will continue using joda-time :) – Macarse Jul 4 '09 at 17:06
2  
Joda Time FTW, so don't bother! – alamar Jul 4 '09 at 17:48
show 2 more comments
feedback

I do lots of IO work, so NIO2 is something I am looking forward too. From the JSR:

  • A new filesystem interface that supports bulk access to file attributes, change notification, escape to filesystem-specific APIs, and a service-provider interface for pluggable filesystem implementations;
  • An API for asynchronous (as opposed to polled, non-blocking) I/O operations on both sockets and files; and
  • The completion of the socket-channel functionality defined in JSR-51, including the addition of support for binding, option configuration, and multicast datagrams.

Secondly, there are two things to reduce Java's verbosity that I'm looking forward to, albeit the later is almost trivial. Regardless, both will help make Java slightly more terse.

Simplified Generics are high on my happy list. Throw in modifiers and larger class names and these lines of code can get borderline unreadable.

Map<String, List<BigDecimal>> numberMap = new TreeMap<String, List<BigDecimal>>();

...becomes...

Map<String, List<BigDecimal>> numberMap = new TreeMap<>();
link|improve this answer
Would've been nice, but alas. – Eelco Sep 17 '09 at 4:18
Ah...I see the improved catch block is out. Sniff, sniff. blogs.sun.com/darcy/entry/project_coin_final_five – Stu Thompson Sep 29 '09 at 12:59
This is a shortcut syntax for eliminating duplication when instanciating ojects of generic classes, but that's not type inference, at least not beyond that particular case. – Rafa Castaneda Jan 19 '10 at 15:01
@Rafa Castaneda: Oops, you are correct. The two had merged in my mind. – Stu Thompson Aug 26 '10 at 13:45
feedback

No one's mentioned fork-join yet? See this for details..

link|improve this answer
yes of course how can we forget light weight and heavy weight components ;) – Algo Mar 15 '10 at 8:06
Care to elaborate your comment? – Tim Mar 15 '10 at 8:26
feedback

Collection literals.

To solve this kind of problem.

link|improve this answer
It's not hugely great. In that example ArrayList<String> places = new ArrayList<String>(Arrays.asList("Buenos Aires", "Córdoba", "La Plata")); becomes ArrayList<String> places = new ArrayList<String>(["Buenos Aires", "Córdoba", "La Plata"]); – Tom Hawtin - tackline Jul 4 '09 at 17:23
feedback

API support for interfacing with USB peripherals.

link|improve this answer
feedback

java.util.programmer :) more productivity for programmer, modularity and independent.

link|improve this answer
Java non blocking calls. I just love that. currently using Apache MINA that is excellent built over Java NIO – Algo Mar 15 '10 at 8:04
EqualsDeep() a fault proof equals method. – Algo Mar 15 '10 at 8:15
feedback

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