What Happened To Java (Specifically The Language)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:04:59Z http://stackoverflow.com/feeds/question/306212 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/306212/what-happened-to-java-specifically-the-language 10 What Happened To Java (Specifically The Language)? Ben Aston 2008-11-20T17:50:55Z 2008-11-21T21:53:53Z <p>Back in 2000 (when .NET was unleashed upon us IIRC) it was an innovative cutting edge language (last time I used it was 2003).</p> <p>From what I read though, Sun has only evolved the language exceedingly slowly. I've even read that where the language has evolved, such as the addition of Generics, developers have complained about poor implementation.</p> <p>Are these accurate perceptions, and if so, any thoughts on why, particularly with the seemingly obvious competition from C#?</p> http://stackoverflow.com/questions/306212/what-happened-to-java-specifically-the-language/306242#306242 9 Answer by Jon Skeet for What Happened To Java (Specifically The Language)? Jon Skeet 2008-11-20T17:58:22Z 2008-11-20T17:58:22Z <p>Java has certainly been evolving very slowly - especially if you compare it with C# and VB. I personally feel that they made the wrong decision with generics in terms of keeping backward compatibility at the cost of execution-time safety and efficiency. The .NET approach works a lot better in <em>almost</em> every way, IMO.</p> <p>Java 7 has a <a href="http://tech.puredanger.com/java7" rel="nofollow">long list of <em>potential</em> features</a> - both language and platform - but it's been an awfully long time in the making, and there's still significant question marks over many of the features.</p> <p>I wouldn't like to place any "blame" on why this has happened, however.</p> http://stackoverflow.com/questions/306212/what-happened-to-java-specifically-the-language/306263#306263 6 Answer by sylvarking for What Happened To Java (Specifically The Language)? sylvarking 2008-11-20T18:05:44Z 2008-11-20T18:05:44Z <p>The evolution of the Java language has been slow, but deliberately so.</p> <p>Generics provides a good example. Compatibility with prior versions of Java was a requirement. <em>Given the goals of the project</em>, the generics implementation performs a very useful function exactly as designed. However, it doesn't meet the expectations of many developers that expected the behavior of reified generics.</p> <p>Innovation in the JVM, on the other hand, has been extremely rapid, often leading the way for other VMs, and promoting competition in the performance arena.</p> <p>In my opinion, the Java language should be as stable as possible. I like the idea of closures, but I don't believe Java is the language for them. (If something must go in, I'd prefer the conservative FCM.) I work with a team of developers that need training, to build and maintain a complex production application. The Java language gives us a nice blend of power and structure as it is.</p> <p>Other languages, like Scala and Groovy, and ports to the JVM like Ruby and Python, will continue to give life to the Java platform, even after the Java language itself has gone the way of COBOL.</p> http://stackoverflow.com/questions/306212/what-happened-to-java-specifically-the-language/306270#306270 1 Answer by JeeBee for What Happened To Java (Specifically The Language)? JeeBee 2008-11-20T18:07:44Z 2008-11-20T18:07:44Z <p>I think that Sun are now being conservative and ensuring they make the right decisions after making a few poor ones.</p> <p>In addition there was a lot of politicking and messing around before Java 1.5 came out. Many companies were using third party hacks like Generic Java, because these core language features weren't available but strongly desired.</p> <p>I think they have sped up again since 1.5, with 1.7 on the horizon, and it looks like each of these has delivered very useful new features. The open sourcing of the language is good as well.</p> <p>And whatever some people say, retaining backwards compatibility has been a very important feature in the Java language.</p> <p>I would say that .NET has kicked Sun's arses into gear, and that it is good that they both exist.</p> http://stackoverflow.com/questions/306212/what-happened-to-java-specifically-the-language/306286#306286 20 Answer by Bill K for What Happened To Java (Specifically The Language)? Bill K 2008-11-20T18:10:25Z 2008-11-20T18:27:53Z <p>From an enterprise point of view, evolving a language is not a good thing, it's actually pretty bad.</p> <p>That's why you hear older languages like cobol, fortran and even C written with year numbers after them--many enterprises stick with that year.</p> <p>On top of that, larger teams means more of a chance that someone in your team will do stuff others don't understand, so there is an important but under-rated value in keeping a language simple and clean. This means not adding too many alternative ways to do things.</p> <p>I worked with Ruby and had a ball with the language, but looking at it from an enterprise point of view, it was an absolutely terrifying language. I couldn't count the ways a bad programmer could mess up a large team, forcing them to spend days untangling a mess created in minutes.</p> <p>There are companies who refuse to go to java 5.0 because of the complexity of generics. (We're still working on 1.3x but that's for another reason).</p> <p>And honestly, most "Improvements" buy you very little. Some syntax change, the ability to remove a few levels of braces.</p> <p>I can't think of a single case where Java has forced me to repeat business logic (Which is what I worry about when I'm trying to make my code "DRY")--it's a clean enough language to be completely DRY if you're a good programmer.</p> <p>For instance, anything you can do with a closure you can do with a subclass without repeating business logic--what you end up with looks worse because of layers of braces/extra class definitions, but is often more reusable (You can extend the class you use to implement your callback, but you can't extend a closure method, you have to rewrite it.)</p> <p>I didn't feel this way about code for the first few decades of my career (I LOVE language tricks, the funkier the better), but now I've been at this a long time--It could be my old age sneaking in, or it could be experience, but now I see huge benefits to simple, explicit, stable code (offered by a language that won't let you play tricks) and can't really find a single advantage to many alternative methods, even if they save a line or two of typing.</p> <p>If you are looking for a java upgrade, however, look at Scala. It's pretty freaking amazing, still runs on the JVM, interacts with Java, etc.</p> http://stackoverflow.com/questions/306212/what-happened-to-java-specifically-the-language/306297#306297 16 Answer by Alex Miller for What Happened To Java (Specifically The Language)? Alex Miller 2008-11-20T18:14:26Z 2008-11-20T21:46:15Z <p>Most languages have one strong hand involved in their origin and evolution. Think: Larry Wall/Perl, Guido/Python, Matz/Ruby, Odersky/Scala, Hickey/Clojure, etc. These guys are all brilliant language dudes. I'd give my left arm to be half as smart as any of them.</p> <p>Java has actually had the distinction of having not just one but a series of amazing language guys at the helm - starting with Gosling, but I also think of Guy Steele, Bill Joy, Gilad Bracha, Neal Gafter, etc - all amazing guys. That actually has been a good thing (I think). It's made the language better but prevented stagnation.</p> <p>But for the last couple years, there's been a real vacuum of language leadership. At the moment, no one's minding the store. No one's making the hard decisions about what fits with the Java mold and makes sense to add (or more importantly to not add). I don't know what that means. I'm hopeful that the enormous popularity and reach of Java and the strong base of the JVM mean that this vacuum is too attractive not to be filled and given direction at some point. But I'm only cautiously hopeful because I don't know who that will be. </p> <p>John Rose is that dude on the JVM side. Though if I can only get innovation in one or the other, I'd take JVM right now anyways. :)</p> http://stackoverflow.com/questions/306212/what-happened-to-java-specifically-the-language/306423#306423 2 Answer by Joel Coehoorn for What Happened To Java (Specifically The Language)? Joel Coehoorn 2008-11-20T18:48:24Z 2008-11-21T21:53:53Z <p>Java has different problems then .Net at the moment, resulting in different choices.</p> <p>.Net, being relatively new and with a chance to avoid some of Java's mistakes has the chance to do thing differently. This gives it two main advantages:</p> <ol> <li>MS was able to more clearly distinguish between run time platforms. C# 3.0 will clearly not run on the 1.1 framework, and C# 1.1 won't run on the 3.0 framework. Of course, there is some fuzziness there, but in general you have a better idea where you stand. On the other hand, the client JVM auto-updates by default on windows. So it can be much trickier keeping an old system working.</li> <li>The .Net framework, being younger, has accumulated much less cruft and internal complexity. Those things will kill the speed with which you can add new features. We're now starting to see some of this in .Net also. For example: there are a number of BCL functions that require you to pass in or return an array that should instead use an IEnumerable. The history of those functions make it nearly impossible to ever change them.</li> </ol> <p>Those two things conspire together to make it possible (at the moment) for the the .Net languages to advance more quickly. However, like I've already said we're starting to see these effects catch up with .Net as well.</p> http://stackoverflow.com/questions/306212/what-happened-to-java-specifically-the-language/307009#307009 1 Answer by benjismith for What Happened To Java (Specifically The Language)? benjismith 2008-11-20T21:58:46Z 2008-11-20T21:58:46Z <p>For a long time, Java has (for better or for worse) preferred to introduce new functionality through frameworks, rather than in the language itself.</p> <p>You could argue that, for example, someone writing a Spring/Hibernate/Struts application is actually writing in a specialized dialect of Java, since their code will be largely inoperable without all the reflection/injection/instrumentation magic performed by the frameworks.</p> <p>Personally, I'd prefer for the language to evolve a little bit more, and for the framework authors to quit monkeying with the language semantics via bytecode manipulation.</p> <p>As a side note, I also strongly disagree with Sun's decision to use type erasure in their implementation of Generics. Supposedly, they wanted to ensure backward compatibility, but to me that seems totally spurious, since Annotations (added at exactly the same time, in Java 5) created their own set of incompatibilities. At any rate, code compiled for Java 5 can't ever be executed on an earlier JVM, so the backward-compatibility claim seems very dubious to me.</p>