vote up 35 vote down star
24

What are the things that Java (the language and platform) got categorically right? In other words, what things are more recent programming languages preserving and carrying forward?

Some easy answer are: garbage collection, a VM, lack of pointers, classloaders, reflection(?)

What about language based answers?

Please don't list the things Java did wrong, just right.

(note by Mark Harrison) This is an interesting and useful question, especially for those of us who don't use java regularly. I'm voting for reopening. Please don't close as argumentative, as it doesn't seem to be causing any arguments.

flag
show 5 more comments

37 Answers

prev 1 2
vote up 1 vote down

Java did not carry forward the biggest mistake in 'C' - the size of integer types being platform-dependent. Every chunk of C has three feet of bletch at the start that tries to work out the correct declaration for a 16-bit int.

No multiple inheritance of implementation. It's just too difficult.

Classes in the java.lang package are part of the language, not simply a bolt-on (as they are in C++).

The language weenies were kept away from java in the early days, meaning that java was a small language. Regrettably, now all the lisp programmers who realise that they will never actually earn a living coding lisp want to add "closures" and Bog knows what else.

Having said that - I though generics were a bad idea, too - but now I wouldn't live without 'em.

link|flag
vote up 2 vote down

Nobody seems to have mentioned Enumerations. They've done quite a nice job on those.

link|flag
show 1 more comment
vote up 1 vote down

I can't believe no-one else has mentioned:

  1. It is FREE (as in beer) to develop programs (JDK) and run them (JRE)

But then also...

  1. Making interfaces first class citizens
  2. Javadoc
  3. Ensuring the language was not forked by J++.
link|flag
vote up 0 vote down

Good harmony with IDE tools such as Eclipse, NetBeans, or IntelliJ.

link|flag
vote up 0 vote down
  • Reflection
  • Application Deployment/Packaging
  • Documentation & the documentation system
link|flag
show 1 more comment
vote up 0 vote down

Ease of debugging!!

Checked exceptions: because they force me to write more-exception-safe code.

Javadoc.

Ease of modularizing code (JARs).

Garbage collection.

link|flag
vote up 0 vote down
  • platform-independency (yeah, it matters)
  • clean and safe OO approach (except for primitive types)
  • the concept of interfaces (nice architectural paradigm, though mixins/traits are missing)
  • type-safe enums
  • convenient GC
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.