vote up 36 vote down star
23

I've become very curious lately, what is it about Java that made it so popular? I've avoided learning it in detail because it seems like a very poor language at a very basic level. A good language should make simple operations simple (not too much boilerplate to do something simple and common like loop over a collection, create a helper function, or read in a file, plenty of syntactic sugar) and provide lots of powerful abstractions for when complexity has to go somewhere (think real macros, templates, dynamic typing, good support for multiple paradigms). Obviously, there are some tradeoffs between these two, since they basically boil down to doing a few things well vs. handling the general but more complex case gracefully, but it seems Java does neither. Simple operations aren't simple because it's so verbose, generally avoids syntactic sugar, and adopts OOP as a one-size-fits-all paradigm. It's also not very expressive when complexity has to go somewhere, again because it insists on a very one-size-fits-all approach to programming, namely class-based OOP.

I'm honestly not trying to start a flame war here. I'm just very curious what the other side of the story is. What are Java's virtues, other than inertia and the wide IDE/library/etc. support that comes with it? When you make the tradeoff of using a language that neither makes simple operations particularly simple, nor gives many powerful and versatile abstractions for complexity has to go somewhere, what do you get in return?

Edit:

I appreciate the responses I've gotten here, and I actually do understand the tradeoff now. To summarize, by choosing a language without much syntactic sugar and with only a single paradigm, you achieve a very simple language. This has practical benefits in that the language has very few dark corners, meaning that the implementations are more consistent across platforms. It also means that code is portable from programmer to programmer, since almost the whole language is in the sane subset, and that, because of the verbosity and explicitness of Java, snippets of code are very easy to grok and reason about in isolation. I'm not sure this is a tradeoff that I would make very often, but I do now accept the fact that it is a legitimate tradeoff and that you do gain something by avoiding the types of features that Java avoids. Thank you.

flag
1  
You are a brave soul for asking this question! I'm glad you did, because it has prompted a lot of great answers. Maybe your credibility with over 1,000 points kept people from annihilating you with down votes. Please do come back and choose the answer that you feel best responds to your question. – DOK Oct 17 '08 at 21:12
2  
"I'm honestly not trying to start a flame war here." - sounds like "I honestly want to know how your mother benefits by mating with hobbits." – duffymo Dec 30 '08 at 15:20
show 8 more comments

36 Answers

prev 1 2
vote up 0 vote down

For me, it is not just the great strict type-system (I personally hate the weakly typed languages), but the development tools. You would have to prey IntelliJ out of my dead cold hands. So far, Microsofts VisualStudio is just inferior to the refactoring power I have with the team of Java/IntelliJ. This is largely to blame to the strange text manipulations the C/C++ system enforces by the #define macros. For computers, this stuff is next to impossible to comprehend and so they cannot support me writing code fast.

Yes, Java is more verbose, but that is offset by the fact that Java is easier to debug, the libraries are clean and the language is simple without any evil taps (until JDK 1.5, that is. Auto-Boxing and the way generics are implemented are a different dark chapter).

link|flag
vote up 0 vote down

java is so popular because everything is already available via vast libraries and we just ought to use the methods defined in classes to achieve our goal .

link|flag
vote up 2 vote down

I would add more two advantages:

  • Open Source
  • Community suport
link|flag
vote up 1 vote down

It depends whether the question is about Java, the language, or Java, the technology. The discussion so far seems to have focussed on the language. Although the Java language has merits of which many are arguable, one of the main reasons for choosing Java as a language has little to do with any of that.

Until recently, and ignoring "off-beat" technologies, Java was the only readily available language for accessing Java technology. This has changed recently and is likely to continue to change as other languages become available.

By "Java technology", I am referring to the facilities involved in the Java Virtual Machine executing Java bytecode. This underlying technology is not dependent on the Java language in any way - you can generate Java bytecode by other means - although the Java language compiler is a good choice because it is likely (guaranteed?) to generate verifiable Java byte code.

So - why do people use Java technology?

Some advantages have been cited here: portablility, garbage collection, library coverage, speed (yup!) ... but there are two which seem to be very important and are less often cited.

These are in the areas of: security and deployment.

Security:

The standard of the security of Java is captured well in the preface of the book "Inside Java 2 Platform Security" by Li Gong, et al.: "Java technology is possibly the only general-purpose secure computing platform to become commercially successful. This would never have happened had the designers not taken security seriously from the start. The security properties of Java technology are many, and the Java platform builds on itself to create a reliable and secure platform."

Java is, arguably, the most secure generally available computing platform that we have ever had! This not only means that low level things do not go wrong, but also that higher level facilities can be built on top of it.

But you have to be in it to win it! Hint: install a SecurityManager! That is - as a crude starting point - either: run your program using "java -Dsecurity.manager" or execute at the start of your program "System.setSecurityManager(new SecurityManager());" but not both!

Actually, of course, there is more. Policies need to managed. Also the whole security model is extensible for the programmers purposes.

Deployment:

The fundamental model for network-based class loading in Java is extremely powerful. And it is becoming increasingly valuable in our increasingly connected world.

Perhaps the greatest strength of Java is that it combines excellent security and deployment capabilities in the same technology.

That is the way that I see it anyway!

link|flag
vote up 0 vote down

Most people will say garbage collection & write once run anyware.

IMO it was the same deeper reason that also made COM a huge success: binary standard and compatibility. Generic C++ has always been plagued by this tiny little detail that few seem to pay serious attention.

That and the ability, because of the VM, for your code to crash without taking the whole proccess down with it. That was crucial for the success of the J2EE as the server and the various applications share the same proccess.

link|flag
vote up 0 vote down

Java had a big company backing it and was around at the right time. It was a massave advance over c++ do to things like garbage collection and the standard librarys. It gained market share and it's not practical to rewrite all the existing Java code in Ruby or Python even if it may be a better language. SInce Java has so many programmers that know it and has so much existing code it is still used to maintain old programs as well as writing new software instead of having to retrain programmers in a new language.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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