What differences will Java 7 have from Java 6, and what will it mean to us Java programmers? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T01:08:51Zhttp://stackoverflow.com/feeds/question/741082http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java18What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?William2009-04-12T00:52:49Z2009-06-04T17:39:07Z
<p>What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?</p>
<p>I'm very curious about what the future of java holds, and I've been able to find some info on Java 7, but I want to know what all that info really means. Like what will a modular JDK do for programs?</p>
<p><strong>See also</strong>: <a href="http://stackoverflow.com/questions/460938">What are you looking forward to in Java 7?</a></p>
http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java/741097#74109712Answer by cletus for What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?cletus2009-04-12T00:58:37Z2009-04-12T00:58:37Z<p>The preeminent source for information on the state of Java 7 is <a href="http://tech.puredanger.com/java7/" rel="nofollow">Alex Miller's blog</a>.</p>
<p>To answer your question: there are no earth-shattering changes (unlike, say, Java 5), just minor improvements. All the big changes like closures, extension methods, reified generics and first-class properties are out.</p>
http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java/741105#7411057Answer by Jon for What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?Jon2009-04-12T01:05:02Z2009-04-12T01:44:24Z<p>The official website is here:</p>
<p><a href="https://jdk7.dev.java.net/" rel="nofollow">Official JDK Website</a></p>
<p>and a full list of features can be found here:</p>
<p><a href="http://openjdk.java.net/projects/jdk7/features/" rel="nofollow">Open JDK Features</a></p>
<p>I think the contents of the release are still subject to change. I'm not quite sure what it really means from a developer perspective - the most obvious change ( as you mention) is that of modularisation (JSR277/Jigsaw). It's still a bit of a contentious issue, there's some official discussion here from the lead developer's (Mark Reinhold) blog:</p>
<p><a href="http://blogs.sun.com/mr/entry/jigsaw" rel="nofollow">Mark Rheinhold Blog</a></p>
<p>The interesting thing here is that Apache Harmony (which is developed out of the JCP) is already a modular JDK via OSGi manifests, more info on this here:</p>
<p><a href="http://www.infoq.com/news/2008/12/jigsaw-jsr277-dead" rel="nofollow">Project Jisaw and JSR277</a></p>
<p>Hope that helps, it'll be an interesting release!</p>
http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java/741163#74116322Answer by Alex Miller for What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?Alex Miller2009-04-12T02:03:38Z2009-04-12T02:03:38Z<p>As far as what changes you'll see in your day-to-day work, my guess is that the major impact will be stuff like <a href="http://tech.puredanger.com/java7#jsr203" rel="nofollow">JSR 203</a> which overhauls the file system API. If <a href="http://tech.puredanger.com/java7#jsr310" rel="nofollow">JSR 310</a> is included, then it would also have a major impact on how you interact with any aspect of the date and time APIs. Many of the other JSRs will only impact you if you happen to already do something in that particular area (JMX - <a href="http://tech.puredanger.com/java7#jsr255" rel="nofollow">JSR 255</a>, concurrency - <a href="http://tech.puredanger.com/java7#jsr166" rel="nofollow">JSR 166</a>, etc). </p>
<p>I think it's unknown at this point how much <a href="http://tech.puredanger.com/java7#jsr294" rel="nofollow">JSR 294</a> and <a href="http://tech.puredanger.com/java7#jigsaw" rel="nofollow">Jigsaw</a> will impact us day to day. It's possible that it will be a new and important way to define modules that will impact the way we bundle libraries, define dependencies, and deploy our apps. Or it may just be used in the JDK and ignored elsewhere. Only time will tell.</p>
<p>There will be a handful of language changes that come out of Project Coin but they are mostly going to be small useful but not revolutionary changes that help remove some boilerplate.</p>
<p>I think the biggest thing most people will notice may be performance. As usual, each JDK brings a whole new set of performance optimizations. We've already seen some very encouraging results in <a href="http://blogs.sun.com/xuemingshen/entry/faster%5Fnew%5Fstring%5Fbytes%5Fcs" rel="nofollow">String performance</a>, <a href="http://lingpipe-blog.com/2009/03/30/jdk-7-twice-as-fast-as-jdk-6-for-arrays-and-arithmetic/" rel="nofollow">array performance</a>, and a new concurrent garbage collector (<a href="http://tech.puredanger.com/java7#g1" rel="nofollow">G1</a>). I suspect many people will find that their existing code will work and run noticeably faster than it did in the past. </p>
http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java/741173#7411732Answer by Don Werve for What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?Don Werve2009-04-12T02:11:04Z2009-04-12T02:11:04Z<p>JSR292 is the big one for me -- dynamic language support. Everything else pales into comparison next to that. I expect to see a massive improvement in JRuby, Jython, and Groovy out of that.</p>
<p>I'm surprised that they dropped closures -- wonder why? No way to handle the scoping without incredible amounts of pain?</p>
http://stackoverflow.com/questions/741082/what-differences-will-java-7-have-from-java-6-and-what-will-it-mean-to-us-java/744776#7447763Answer by hamletdarcy for What differences will Java 7 have from Java 6, and what will it mean to us Java programmers?hamletdarcy2009-04-13T17:53:49Z2009-04-13T17:53:49Z<p>I think JSR 308 and the @Nullable/@Nonnull annotations will affect people. I expect to turn on @Nonnull as the default setting and then spend 1/2 a week making my codebase comply. I'm probably not the only team lead planning this. </p>
<p>You can prepare now by downloading the prototype from the JSR 308 website (<a href="http://groups.csail.mit.edu/pag/jsr308/" rel="nofollow">http://groups.csail.mit.edu/pag/jsr308/</a>) and running the checker against your codebase today. </p>