vote up 32 vote down star
19

I read a lot of blogs and see people all the time talking about bad things in the java programming language; a lot of them are about annotations and generics that were added to the language in 1.5 release. What are the things in the language or the API that you don't like or would design differently?

flag
show 13 more comments

40 Answers

1 2 next
vote up 44 vote down
  • Checked exceptions.
  • Every object Is a monitor.
  • Primitives are not objects.
  • Lack of properties.
  • The way generics are implemented.
link|flag
4  
Checked exceptions are fine when used correctly. – Dan Dyer Jan 19 '09 at 16:12
4  
Except not all exceptions are checked. NullReferenceException, anyone? The jury is still out on whether checked exceptions provide real value, given the ammount of exception-translation work it requires to use correctly. – Aaron Jan 23 at 21:39
1  
@kdgregory They're generally right. Look around some answers here for details. I can live without properties though, they just encourage the property pattern which, while not ALWAYS terrible, tends to break encapsulation pretty severely. – Bill K Jan 24 at 1:37
5  
arrays most certainly ARE really objects. They have a constructor, fields, methods, everything. They get some syntactic sugar and special JVM treatment, that's all. And OF COURSE they're not resizable - that's what ArrayList is for. – Michael Borgwardt Feb 3 at 9:11
3  
Checked exceptions are horrible. What a great way to cause simple changes to create a cascade of modifications to other classes, and to add a lot of worthless code. Every time I catch an exception only to throw it again (or a different one, or to log it and toss it out), I feel sad. – TM Feb 15 at 3:35
show 18 more comments
vote up 39 vote down

I really don't like the manipulation of dates in Java (java.util.Date, java.sql.Timestamp, java.sql.Date, java.util.Calendar).

link|flag
show 5 more comments
vote up 27 vote down

generics-as-afterthought

link|flag
1  
As opposed to never shipped because were still trying to get generics right when the project was cancelled? – Tom Hawtin - tackline Jan 19 '09 at 16:47
show 5 more comments
vote up 20 vote down

I think the Java language is overall well designed. I just think it's way too verbose.

link|flag
1  
The verbosity and rigidity is what make it maintainable as it is READABLE! You are encouraged to be verbose by the example of the runtime library. – Thorbjørn Ravn Andersen Feb 3 at 0:01
1  
VB is a verbose language also. That doesn't make it any better than, a less verbose one. What's wrong with ":" instead of "extends", it's perfectly readable, when you see "class Derived: Base", to think "class Derived extends Base". conciseness.equals(readability) or conciseness == readability ? – Pop Catalin Feb 16 at 14:37
6  
The important thing is clarity. THEN comes conciseness. C++ = concise & unclear. Java = verbose & clear. Python = concise & clear. ;-) – MiniQuark Feb 16 at 18:44
1  
C++ is not what I'd call concise. (C++ is naturally obfuscated) I can't say I saw a C++ program that was concise, actually C++ is notorious for the length of it's programs compared to other languages. – Pop Catalin Feb 16 at 18:52
1  
Java: The OOness of C++ with the verboseness of COBOL. – Slapout Aug 8 at 23:46
show 4 more comments
vote up 18 vote down

On the java platform: AWT, and the XML APIs (it's amazing what you have to do just to parse a String into a DOM tree)

On the language: add type inference and tuples, generics without erasure, make 'volatile', 'strictfp' and 'transient' annotations

link|flag
show 5 more comments
vote up 13 vote down

Ever since I have learned python, I just find that Java lacks the possibility of returning multiple values easily:

#In python:
name, age = john.summary()

//In Java:
Object[] summary = john.summary();
String name = (String) summary[0];
int age = ((Integer) summary[1]).intValue(); #primitive types require boxing

Edit: as mmyers pointed out, the following is legal as of Java 5:

int age = (Integer) summary[1];
link|flag
2  
Something that bothered me at first, but I've since decided that it's a good thing. Forces one to spend the extra time to encapsulate complex returns. – Brian Knoblauch Jan 19 '09 at 18:46
1  
The problem being that because Java doesn't support value typed structures or by-reference arguments, returning multiple values means a heap allocation on every call. Garbage collection is pretty good, but it's still a waste to do that. – U62 Jan 21 '09 at 22:04
show 7 more comments
vote up 12 vote down

Primitive types (ints etc.) are not objects like in Smalltalk, forcing the programmer to use boxing classes such as Integer.

Smalltalk integers are real objects. In order to avoid overhead, they are not implemented as "boxed" primitives, like Java does, but instead as "immediate" objects: the object's value is stored within the object "pointer" (the same is true with individual characters) To do so, it uses the pointers' low bits, which are always zero for regular objects (since structures are usually word-aligned), as "tags" to differentiate immediate objects with the former. For example, if a pointer's bit 0 is set, it designates a SmallInteger object: its integer value is stored in the remaining 31 bits. Larger integers use regular objects with infinite precision (AKA bigint).

Java 5's autoboxing is the worst of all solutions, because it hides the overhead behind syntactic sugar: the programmer is unaware of the fact that objects are created behind his back although he's using primitives. Not only that, but several Integer objects could be created for the same int value. Whereas in Smalltalk, the value IS the objects. This also allows the compiler to generate optimal code, in a way that can't be done with boxed objects. Smalltalk proves that primitive types can be objects AND be implemented efficiently.

This is one of the reasons why Java cannot be considered a high level language (not that this can be a problem or drawback in any way, there is ample room for system level programming languages).

link|flag
2  
Primitives also don't have the memory / computational overheads that Objects do. If anything, primitives are a feature. – Richie_W Jan 19 '09 at 15:12
1  
@j_random_hacker: see my edited answer for more info about Smalltalk's immediate objects. – fbonnet Jan 26 at 10:58
1  
I won't mark you down because you definitely thought out your answer, but everything you just said they got wrong is things I believe they got right. - Except leaving out auto-boxing, which they later fixed. :o – 280Z28 Aug 6 at 3:16
show 8 more comments
vote up 10 vote down

Arrays are covariant which shouldn't be.

See: Wikipedia Article

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

All References are nullable

All references are nullable, which causes a lot of NullReferenceExceptions. I think something like "Option" (Scala) is better suited for those rare cases where an object reference actually should be able to be "Nothing". Of course that would have required Generics and some Pattern Matching right from Version 1.

link|flag
show 3 more comments
vote up 9 vote down

Keeping too much C syntax that was known to be problematic. The switch statement should have been redone for Java. Operator precedence is at least a more complicated problem; while Java could do better than C there was some advantage in keeping it.

One goal for C++ was to be at least a better C, and so Stroustrup had an excuse for keeping bad C decisions. Gosling et al. didn't.

Edit: Also octal literals (thanks, Dan Dyer, for pointing that out). Those are very useful things for writing OS internals and bit-grovelling code, which are applications Java isn't usually used for.

link|flag
2  
C# allows switch on strings and doesn't fallthrough... – FlySwat Jan 23 at 23:46
1  
One reason for keeping C syntax was so that developers could easily switch from C/C++ to Java. I think that's a pretty good excuse, because without programmers, a language dies. – Alex O'Konski Jan 24 at 0:08
show 9 more comments
vote up 7 vote down

No destructor. I wish there was a standard (optional) way to say "I'm done with this, run some code", rather than relying on the finalize method that may never get called. I'm not talking about having to manage memory, just that when you do want to finish with something, there was a standard call to make which would do whatever clean up you wanted and then provide (maybe) some hint to the Garbage Collector that you're done with it. I'm sick of having some classes with a "close" method, and some with a "done" method, and so on and so forth.

link|flag
1  
There is a much better and more controllable way to handle it than destructors, look into references (weak reference, ...) – Bill K Jan 24 at 1:41
show 5 more comments
vote up 7 vote down

Too much focus on simplicity at the expense of expressiveness. That basically sums it up.

link|flag
vote up 7 vote down

The test-unfriendly servlet API... you need a framework to be able to mock a bloody Request!

link|flag
vote up 7 vote down

Checked exceptions are a problem in Java because they may break encapsulation.

There is an interview worth reading with Anders Hejlsberg on Artima where he talks about that:

Anders Hejlsberg: Let's start with versioning, because the issues are pretty easy to see there. Let's say I create a method foo that declares it throws exceptions A, B, and C. In version two of foo, I want to add a bunch of features, and now foo might throw exception D. It is a breaking change for me to add D to the throws clause of that method, because existing caller of that method will almost certainly not handle that exception.

link|flag
1  
The point is that exceptions thrown by a method should not be part of the API contract, any more than the methods it calls, or the algorithms it uses. – John Saunders Apr 11 at 22:46
2  
In my opinion the problem with the quote above is misuse of the exception. It you have a method that does-everything-and-anything the problem is not with the exceptions but with the overcomplicated method itself. The added features would most likely be better in another new method and changes are no longer breaking. You are correct in saying that interface contract does not depend on the implementation of this interface. However failure to do the action IS and MUST be part of the contract and checked exception is a great way to ensure failure are correctly propagated to client code. – Newtopian Aug 6 at 3:45
show 2 more comments
vote up 6 vote down
  • The default access mode should be private.
  • Bytes should be unsigned.
  • The Cloneable interface should include the clone() method.
link|flag
1  
Heck, I'd be happy if ALL variable access was private too! – Bill K Jan 24 at 1:42
show 2 more comments
vote up 5 vote down

JNI could be one of the worst in Java.

It is much much more time wasting if you compare it with PInvoke in .NET.

link|flag
1  
It should be a decision of the programmer. Not the platform provider. Anyway, I hope mono will able run them some day later, think about WINE. – Dennis Cheung Feb 7 at 14:20
show 3 more comments
vote up 5 vote down

No destructors, therefore no possibility of RAII.

Most objects are memory-only, which Java's GC handles just fine. But whenever you have a class that allocates non-memory resources (e.g. DB handles), you need to remember to clean it up in a finally block every time you create an instance -- so you need finally blocks everywhere containing the same cleanup code, and if you forget one place, bang, resource leak as soon as an exception is thrown in that scope.

This is one of the (few?) things C++ got right -- you write the cleanup code just once in a destructor, and the language guarantees that it will always be called when an instance of that class goes out of scope, even in the event of an exception. I realise that Java is GC-collected, but RAII and GC are not mutually exclusive -- there just needs to be a way to specify deterministic destruction at scope exit for a particular class or instance, and to provide a destructor. Really, you would not believe how much this simplifies resource management.

It's been 5 years since I touched Java, maybe this has changed?

link|flag
1  
Weak References can do the exact same thing as destructors, but in a much more controlled way. There is a collection with the explicit duty of calling destructors as an object is being GC'd--this stuff has been in there YEARS now and I still hear "no destructors" – Bill K Jan 24 at 1:45
1  
@Bill K: There are no deterministic destructors in the C++ style. Finalizers in Java/C# shouldn't be used in the same way that they are in C++ - they're more a "last line of defence" than "the normal way of cleaning up." – Jon Skeet Jan 25 at 8:59
4  
RAII is incredibly useful and Java cannot support it. Using finally is not a scalable solution and it must be done explicitly in the implementation which increases the risk of programmer error. – Bernard Apr 11 at 21:25
show 4 more comments
vote up 3 vote down
  • Fields, parameters and local variables should be final by default and only mutable when set. e.g. var
  • There is no consistent way to make an object immutable. (Only references and primitives)
  • wait(long timeout, int nanos) on every object, even though it does not have nano-second precision and probably never will.
  • Object.getClass() returns Class<?> i.e. getClass() doesn't know what class it is at compile time. e.g new Integer(0).getClass() returns a Class<?> not Class<Integer>
  • array types don't override toString() as so print something like "[B@ef172a" However, Arrays.toString(byte[]) would be a useful default behaviour.
  • Integer.class.isAssignableFrom(int.class) == false. int.class.isAssignableFrom(Integer.class) == false. Yet with autoboxing and reflections there is very few examples where this is the case.
  • @Deprecated are never removed, even if it has been deprecated since version 1.0.x
link|flag
3  
Class<? extends Integer> c = new Integer(0).getClass(); compiles for me. – Mr. Shiny and New Feb 3 at 19:05
vote up 3 vote down

In JDBC the java.sql.Date class has no time component. This forces you to use Timestamp, which confuses Oracle when your dates are stored as Oracle DATE values.

Also I'm not crazy about how Java is packaged. It's annoying to have to set up class paths and jar files and don't get me started with EAR files and WAR files. There is room for improvement here.

link|flag
vote up 2 vote down

I tend to get a little irked by the deprecation of good useful objects and their replacement with ugly, hard to use objects (example: Date & Calendar).

link|flag
2  
Date was not "good useful", it was "simple and broken". – Michael Borgwardt Jan 19 '09 at 15:26
vote up 2 vote down

A couple of years ago I appreciated Java more than I do today.

I fell deeply in love with their packaging. Today I despise it. A gazillion classes all over the place packaged in a way that would have very little sense hadn't you had experience armed with you. Check out the language ref for AS3 and see what I mean. The 2nd day I started working in AS3 I wasn't going on google looking for tutorials on how to do something, I was already a natural, knowing instantly where that class that I never knew even existed, that did exactly what I needed, was located.

Java still has a great community, but it's not as intuitive getting involved in their communities as it is with other languages. Other languages have provided way better developer portals, way better and more resources.

Basically, Java got too big to handle, got big before they'd lain out everything for its growth. It's too bogged, too confusing. They used to be the forward thinkers in so many aspects, now they are good in few and in some we just wish Java would collapse once and for all.

link|flag
vote up 2 vote down

Making up a whole new logging api (java.util.logging) to be the new standard was a mistake that annoys me. I have to create a subclass of a Formatter just to get output on only one line! What was wrong with log4j?

link|flag
vote up 1 vote down

I'm by no means an authority for what Java is doing wrong, but from this rant on comp.lang.lisp it looks like there is logic error in their exception handling. Is that a fair assertion?

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

I like Java a lot, but mainly two things bug me:

  • No unsigned data types - I find that most of the time, it doesn't make sense for the data I have to be negative. Unsigned is like a form of documentation, and it also happens to double the maximum value.
  • No structs - mainly a performance thing.

Also I think doSomething() looks worse than DoSomething(), but that is merely a coding standard, and not really a problem.

link|flag
vote up 1 vote down

I don't like how collections in Java have a toArray() method that returns an Object[]. It's very difficult to cast between a primitive array and a collection.. You end up doing this:

ArrayList<Integer> list = callSomeWeirdAPIMethod();
Object[] f*ckedArray = list.toArray();
int[] realArray = new int[list.size()];
//...copy elements from f*ckedArray to realArray

where you can't do this:

int[] realArray = (int[]) list.toArray();

or even this:

Integer[] realArray = (Integer[]) list.toArray();
link|flag
2  
Integer[] realArray = list.toArray(new Integer[list.size()]); – Dave Ray Jul 14 at 21:29
vote up 1 vote down
  • No operator overloading
  • No real array literals
  • Primitives are not objects
  • No decent multiple inheritance (I know there are problems, but they are fixable)
  • Too verbose
  • No decent way to declare "variables" constant unless they are primitives (i.e. you can still call 'setBar' on a 'final Foo foo')

Not necessarily things they did wrong, but things that I would have liked:

  • Closures and function pointers
  • Destructors
  • Possibility to return multiple values from a method
link|flag
vote up 1 vote down

GC

While GC is incredibly convenient, an unpredictable GC is not suitable for certain applications. One such example would be hard real time systems. In a hard real time system a single unexpected delay can result in mission failure.

Examples of such hard real time system would be: fly by wire systems on a fighter jet, navigation systems on a missile, robotic arms that perform surgery, etc.

Also, getting killed in a real time video game is also a mission failure. You don't want to GC right at the moment the player pressed the "dodge the giant fireball that will kill my character and force me to redo the 20 minute long level," button. That is a very important button. (Although it has been noted that in multi-tasking OS you cannot control the task priority which could easily be worse than a large GC operation.)

Static Polymophism

Ignoring static polymorphism. Static polymorphism could go beyond "C++ like" templates, and it is a very useful optimization. Generics as implemented in Java is still dynamic and it loses that opportunity to eliminate run-time type checking where compile time type checking would is enough. Of course is possible for increased code size to reduce performance more so than dynamic types would. As with all optimizations it should be profiled.

Everything is in a class

Although nit picky, there are times when you just want a function. Currently in Java you must put such functions in a class as a static function. A better solution would be a function in a namespace. While a class can work like a namespace, classes cannot span multiple files and libraries.

link|flag
show 4 more comments
vote up 1 vote down

java.nio.Buffer, ByteBuffer, etc. are classes, not interfaces, and have no way of allowing you to wrap anything but arrays of primitive types (byte[] for ByteBuffer) in a Buffer so you can pass the resulting object to a method which uses a Buffer.

link|flag
vote up 1 vote down

No public mutable BigInteger and BigDecimal for more performant compound operations and the way requests for them gets always turned down citing the evilness of mutable objects in multi-threaded application. Please then remove StringBuilder as well!

Using question marks instead of named placeholders in PreparedStatements - who wants to count each question mark all the time to check if everything got assigned?

Inconsistent usage checked/unchecked exceptions in the runtime: Integer.parseInt(String) unchecked, String.getBytes(String) checked.

Sub package cross-dependencies in the runtime: java.lang <-> java.io?

link|flag
vote up 0 vote down
  1. Variables should have been not nullable by default.
  2. Fields and variables should have been final by default.
  3. There ought to have been a type for method references (first-class functions).
  4. Missing the ability to seal types (not classes, but types).
  5. Inability to do case-analysis on complex types (enumerations only, sorry).
link|flag
show 5 more comments
1 2 next

Your Answer

Get an OpenID
or

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