vote up 1 vote down star

Why do you like Java so much? What are those features that make it practically better than C or even C++?

flag
3  
Why do you think I like Java? – Ponting Nov 7 at 18:47
3  
See the discussion here: stackoverflow.com/questions/213757/… – Michael Petrotta Nov 7 at 18:48
1  
Several related questions: google.com/search?q=site%3Astackoverflow.com+c%2B… – jheddings Nov 7 at 18:51
...for what kind of application? – sellibitze Nov 7 at 18:56

closed as subjective and argumentative by Michael Petrotta, Thomas Owens, Yuval A, Martin York, pmg Nov 7 at 19:24

7 Answers

vote up 4 vote down check

Top 3 reasons: Garbage collection, garbage collection and garbage collection. When the history books are written, it'll probably be remembered as the language that took the concept mainstream.

Consistent naming conventions almost universally followed (no need to play "is that a method or a class", "what file is that class in?". You can find code reliably in a big project you've never seen before, even without an IDE).

Massive libraries. An amazing amount of code out there you can just use. Of course, finding what's good and what's bad is a huge challenge even for experienced people.

It's reasonable to point out 2 out of 3 of these are features of the JVM (or indeed the CLR), and can be used from any programming language than runs on it, not just Java.

link|flag
1  
In short: Java has good marketing. – Apocalisp Nov 7 at 19:06
1  
I think when the history books are written, Java will be remembered for taking the concept of a VM and making it mainstream. That, and being the next COBOL. – Charles Salvia Nov 7 at 19:12
3  
Garbage collection is what drove me away from Java. Non deterministic calling of destructor basically destroyed the usefulness of the language and introduced several horrible side effects. C++ fine grained garbage collection via smart pointers is much more elegant and controllable. – Martin York Nov 7 at 19:17
vote up 1 vote down
  1. The ability to compile to both a webapplet runnable in a webbrowser, as well as to a standalone application (with Google GWT you can also compile to javascript =).

  2. The vast, well-written libraries

  3. Fast compilation times and easy linking (as compared to C++)

Not on my list: Garbage collection, I've never thought the lack of a garbage collector is of any problem when using c++.

link|flag
vote up 2 vote down

Hmmmmm coffee, I love coffee

link|flag
vote up 1 vote down

I like the JVM.

link|flag
vote up 1 vote down

Garbage collection.

link|flag
vote up 2 vote down

I like Java because it is so simple that you can't write swap in it.

I like Java because it is 100% portable unlike C/C++, but that's just in theory.

I like Java because operators overloading is not allowed.

I like Java because you can produce fast code, but with ~x20 code size compared to C/C++.

I like Java because every professor likes it.

Do I like Java?! :)

link|flag
:​​​​​​​​​​​​​D – GMan Nov 7 at 20:30
vote up 12 vote down

I don't like Java.

link|flag
Nor I. ................... – Charles Salvia Nov 7 at 18:50
Me too :-) [15 char limit] – Ponting Nov 7 at 18:51
same here ......... :) – vinit dhatrak Nov 7 at 18:56
and Java doesn't like you :) – dfa Nov 7 at 20:36

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