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 6 vote down

Checking bounds of all array accesses and validity of all casts.

link|flag
vote up 24 vote down
  • Platform independence, in both theory and practice.
  • Garbage collection.
  • Meaty APIs for the time.
  • Strictness of the language - easy to get into the OO mindset when developing in.
link|flag
show 2 more comments
vote up 11 vote down

Package and class naming conventions that follow the directory layout.

link|flag
vote up 22 vote down

Apart from the technical and the language related features, one of the most important things that Java (and Sun) got right was the evolution of a vibrant and active community around which the language grew and continues to grow.

link|flag
vote up 5 vote down

Garbage collection - I use C++ and know the pain of releasing the memory myself

Clear distinction between interfaces and classes - Clearly separates two different concepts

link|flag
show 4 more comments
vote up 28 vote down
  • A googlable name. Try googling for "C"...
  • A standard library that is somewhat consistent.
  • A fast and open standardization process.
link|flag
2  
Since when is the JCP "fast" ? – Guillaume Jan 20 '09 at 9:02
show 7 more comments
vote up 38 vote down

Garbage collection.

I don't think Java would initially have interested me without GC. When it first came on the scene I had been using Scheme and Oberon (both with GC) and a smattering of C and C++ (both without GC). For me GC (and array bounds checking, and pointer safety, ...) was a clear win.

link|flag
show 2 more comments
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.