This is a summary of Mark Reinhold's Java 7 update given at Devoxx, with a few comments from myself. Mark described his presentation as a provisional plan and not binding.
The changes in Java 7 will come from Sun and others.
Among the "Big" changes from Sun (with what looks like a prioritized ordering):
- Modularization - 294 and project Jigsaw
- 292 - JVM Support for dynamic languages
- JSR 203 - More New I/O APIs which are nearly finished, includes true asynchronous I/O (not just non blocking I/O) and finally a real file system API
- JSR TBD: Small language changes (following)
- 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)
- Null dereference expressions - Null checks with '?' syntax similar to Groovy... lettign developers avoid a nest of null checks.
- 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).
- Multi-catch - (yes!) allows a comma seperated list of disjunctive exception types in catch clause.
- Joe Darcy is leading effort in Open JDK and his blog was referenced: http://blogs.sun.com/darcy
- JSR 296 - Swing application framework - It still needs to be easier to create Swing apps.
- A forward port of 6u10 features (Java Kernal, QUickstarter, New Plug-in, etc.)
- SCTP (Stream Control Transmission Protocol) - Driven by big customers, probably proprietary
- SDP (Sockets Direct Protocol) - Again, customer driven
- Upgrade class loader architecture - Work started in Java 5 and continues to evolve. There are some deadlock issues today in classloader delegation that will be addressed.
- Method to close a URLClassLoader - seems simple but actually tricky to implement.
- Unicode 5.0 support - "just got to do it"
- XRender pipeline for Java 2D - This was an Open JDK Integrators Challenge project,and is an analog to the OpenGL pipeline but much more portable across x11.
- Swing Updates - JXLayer, DatePicker, CSS styling (maybe) that Ethan Nicholaus (sp?) has been working on
Hotspot run-time compiler enhancements
- G1 Garbage collector (available in 6 experimentally soon) - Leads to much smaller pause times and hopes to replace CMS (Concurrent mark sweep) GC
- Compressed pointer 64 bit VM
- MVM-lite maybe - Multiple Virtual Machines will help you run isolated applications and allow a kill -9 on a Java application. Mark said it is not clear what problem would be solved, and original project was extremely ambitious, but desire to drag apps out of browser plugin presents a good usage and need for MVM.
Other's Features:
- JSR 308 - Annotations on Java Types - Driven by Prof. Michael Ernst and Mahmood Ali. Encode more compile time assertions in code (like the @NotNull annotation), which is checked by the static checker. (yes!)
- Concurrency and Collections Updated (JSR 166 continues). All the features announced on the concurrency interest mailing list by Doug Lea yesterday: Fork/Join, Phasers, LinkedTransferQueue, ConcurrentReferenceHashMap, and Fences
- Closures - No consensus around single proposal
- Reified generics
- 1st class properties
- Operator overloading
- BigDecimal syntax
- JSR 295 - Beans Binding