|
3
|
|
edited Jan 12 '09 at 0:13
|
Java
- Generics type erasure (i.e. no reified generics)
- Inability to catch multiple exceptions (of different types) in a single catch block
- Lack of destructors (finalize() is a very poor substitute)
- No support for closures or treating functions as data (anonymous inner classes are a very verbose substitute)
- Checked exceptions in general, or more specifically, making unrecoverable exceptions checked (e.g. SQLException)
- No language-level support for literal collections
- No type-inference when constructors of generic classes are called, i.e. the type inferenceparameter(s) must be repeated on both sides of the '='
|
|
|
|
2
|
|
edited Nov 15 '08 at 1:16
|
Java
- Generics type erasure (i.e. no reified generics)
- Inability to catch multiple exceptions (of different types) in a single catch block
- Lack of destructors (finalize() is a very poor substitute)
- No support for closures or treating functions as data (anonymous inner classes are a very verbose substitute)
- Checked exceptions in general, or more specifically, making unrecoverable exceptions checked (e.g. SQLException)
- No language-level support for literal collections
- No type inference
|
|
|
| |
|
Post Made Community Wiki by Community♦
|
occurred Nov 12 '08 at 1:25
|
|
|
|
|
|
1
|
|
answered Nov 11 '08 at 22:31
|
Java
- Generics type erasure (i.e. no reified generics)
- Inability to catch multiple exceptions (of different types) in a single catch block
- Lack of destructors (finalize() is a very poor substitute)
- No support for closures or treating functions as data (anonymous inner classes are a very verbose substitute)
- Checked exceptions in general, or more specifically, making unrecoverable exceptions checked (e.g. SQLException)
|
|
|