vote up 6 vote down star
3

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

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

6 Answers

vote up 1 vote down

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

link|flag
vote up 0 vote down

API support for interfacing with USB peripherals.

link|flag
vote up 4 vote down

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.

Type inference, aka 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|flag
Would've been nice, but alas. – chillenious Sep 17 at 4:18
Ah...I see the improved catch block is out. Sniff, sniff. blogs.sun.com/darcy/entry/… – Stu Thompson Sep 29 at 12:59
vote up 8 vote down

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
link|flag
2  
Totally agree. Without closures, Java 7 is completely irrelevant. – Apocalisp Jul 6 at 20:27
1  
Large arrays and multi-catch are out, apparently: blogs.sun.com/darcy/entry/… – Stu Thompson Sep 29 at 13:01
vote up 3 vote down

Collection literals.

To solve this kind of problem.

link|flag
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 at 17:23
vote up 6 vote down

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|flag
I agree, the Date implementation in Java's library is atrocious... especially if you are used to using .Net – jle Jul 4 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 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 at 17:05
I will continue using joda-time :) – Macarse Jul 4 at 17:06
2  
Joda Time FTW, so don't bother! – alamar Jul 4 at 17:48
show 1 more comment

Your Answer

Get an OpenID
or

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