I know JDK 1.5 pretty well. As we all know, besides new API (such as AtomicInteger, for example), there were major language changes such as providing support for generic, adding enum, prividing auto-boxing and auto-unboxing and so on.

I want to find some resources that have preferably short description of new features in JDK 1.6 and 1.7 (for big new features I prefer to read complete explanations). As far changes of API only major changes is acceptable and short review of new one (if I recall write there is new way to read characters from the console, for example). As far as features goes I want to find complete list (such changes in the allocation of the objects, now JVM can actually creates objects on the stack for optimization purposes, for example, but I don't know the details).

For JDK 1.6 Core Java Technology Features and Java™ SE 6 compatibility with J2SE 5.0. For JDK 1.7 Working with Java SE 7 Exception Changes, but it is incomplete list.

link|improve this question
feedback

2 Answers

1.6 changes: http://www.oracle.com/technetwork/java/javase/features-141434.html

1.7 changes: http://openjdk.java.net/projects/jdk7/features/ (Language enhancements: http://openjdk.java.net/projects/coin/)

link|improve this answer
This is list is incomplete as I mentioned before. It can be a good point to start, but it isn't the answer that I am looking for. – alexsmail Jan 9 at 5:17
@alexsmail - actually, your question links to different lists than the ones in the Answer. – Stephen C Jan 9 at 6:09
@Stephen C, Oh, I see now. It was unintentional. I just make some research prior to ask the question. :-) – alexsmail Jan 9 at 10:34
feedback
up vote 1 down vote accepted

JDK 1.6 Compatibility http://www.oracle.com/technetwork/java/javase/compatibility-137541.html

Core Java Technology Features http://java.sun.com/developer/technicalArticles/J2SE/Desktop/JavaSE6_build39.html

Java SE 6 Performance White Paper http://java.sun.com/performance/reference/whitepapers/6_performance.html

Quick note, implementation of the java.util.ArrayList was changed (due to bug 6260652).


JDK 1.7

Java SE 7 and JDK 7 Compatibility http://www.oracle.com/technetwork/java/javase/compatibility-417013.html (there are some behavioral incompatibilities).

Java SE 7 Features and Enhancements http://www.oracle.com/technetwork/java/javase/jdk7-relnotes-418459.html

A look at Java 7's new features http://radar.oreilly.com/2011/09/java7-features.html (see also http://en.wikipedia.org/wiki/Convention_over_configuration for diamond operator)

(Misc) JDK 7: New Interfaces, Classes, Enums, and Methods http://marxsoftware.blogspot.com/2011/03/jdk-7-new-interfaces-classes-enums-and.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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