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.
