vote up 15 vote down star
12

Hi, Despite that the work of the guys from SUN with the Java core API is awesome, as they are humans, they are not infallible. I have read in several books some criticism about Some huge mistakes that (my guess) are still there for backward compatibility and legacy code. My question here is which ones do you know?

As examples:

  • Observable is a Class. Should be an interface in order to allow inheritance.
  • Cloneable: It shouldn't be a marker interface. (Should have the clone method instead of be in Object class).
flag

The Observer/Observable stuff is leftover from early Java development. I'd recommend rolling your own "listener" interface instead of using these (like Swing and AWT did). – John Meagher Oct 9 '08 at 12:18

25 Answers

vote up 20 vote down check
  • Properties extends Hashtable. Aargh.
  • Every object being available for locking instead of specific lock objects(.NET has the same problem)
  • Every object having equality/hashcode - again .NET has the same problem, but at least they have IEqualityComparer<T> as well as IComparer<T>. This is the way that all maps etc should go, as there are multiple concepts of equality depending on circumstance.
  • The date/time API (new version in Java 7, I hope)
  • The async model of NIO is harder to grok than the async .NET model
  • No universal disposal interface - partly due to checked exceptions - which makes an equivalent of the "using" statement harder to cope with
  • Poor text encoding support (too much use of names as strings)
  • No unsigned byte type
link|flag
There are some lock objects you can use in java.util.concurrent. In fact you could build your own locks fairly easily, all the tools are there. – ReaperUnreal Oct 9 '08 at 19:54
Yes - but the fact that they're present for every objects increases the likelihood of abuse. – Jon Skeet Oct 9 '08 at 20:12
Property extends Hashtable - whats wrong with that? – Andreas Petersson Jan 30 at 8:20
2  
@Andreas: (I've corrected it to Properties, btw) - Hashtable allows you to map arbitrary object keys to arbitrary object values. Properties are meant to be string to string. Inheritance fails here. Properties should contain a Hashtable rather than subclassing it. – Jon Skeet Jan 30 at 9:51
2  
Firstly, it's full of those deprecated methods from the early versions. Secondly, it makes it hard to do simple operations (create a specific date/time in a given time zone). The calendar arithmetic is insanely complicated to understand and use correctly. The fact that everything's mutable makes it very hard to reason about the code. It doesn't distinguish between the concepts of a time, a date/time, a local date/time etc. The time zone database is hard to update as it's part of the JRE. Joda Time is much, much nicer. – Jon Skeet Jun 2 at 6:06
show 5 more comments
vote up 14 vote down
  • Observable has to be a class so that it can actually store the Observers and call them with updates. However, it's pretty trivial to write your own MyObservable - for instance I frequently use a RMIObservable that fires the update over an RMI link.

  • The Date and Calendar classes suck rocks.

link|flag
2  
My fave quotes on these 2 are from the old Java FAQ: "[Date]...is a very bad joke - a sobering example of how even good programmers screw up" and then, re: GregorianCalendar, "Sun licensed this overengineered junk from Taligent - a sobering example of how average programmers screw up" – Cowan Oct 9 '08 at 12:18
Don't use Observer/Observable. Use java.beans events, or something similar. – Tom Hawtin - tackline Oct 9 '08 at 12:23
JSR 3something > Date > Calendar, IMO. – Thomas Owens Oct 9 '08 at 12:35
What little was good about Date has now been deprecated, so we're forced to use the far more painful Calendar. :( – Brian Knoblauch Oct 9 '08 at 13:07
Tell me about it. I had a project a few quarters ago to implement a calendar for a class. Well, it was a pain because we didn't want to use deprecated methods and Calendar sucked so hard. And we didn't find Joda Time fast enough. – Thomas Owens Oct 9 '08 at 14:12
show 1 more comment
vote up 5 vote down

Public instance fields in many AWT classes

link|flag
vote up 15 vote down

Stack inherits from vector rather than simply holding one, giving stacks vector methods and allowing clients to trivially break the abstraction. A classic example of inheritance being used when composition should have been.

link|flag
vote up 12 vote down

Stack extends Vector! insanity.

if I am using a stack object I expect users to be able to push and pop, and err, thats about it.

The java Stack also has all the vector functionality like get and set.

A Stack class that had a vector member variable, and only exposes the methods that a stack should have is how this should have been done, imho. This is a great example of where Composition is more appropriate than inheritance.

Josh Bloch's excellent Effective Java book is a great book to read, and he points out several flaws in the Java API very eloquently. He has obviously thought long and hard around the subject, seeing as he was one of the Java architects.

link|flag
vote up 7 vote down
  • java.util.Calendar is a example of bad API design. Try to calculate the difference in days between two calendars and you will see that code is not readable/clear/succinct. APIs to handle dates in Java are bad. But things is getting better.
  • Some parts of Collections API. Per instance, "sort" must be a java.util.List method (they can't do it now because of compatibility); "Stack extends Vector" and lack of ways to handle collections in a easily (predicates, transformers, filters, etc)
  • Layout managers in Swing: powerful, but totally complicated.
  • java.util.Properties is a HashTable. Non sense!
link|flag
vote up 4 vote down

In addition to the Observable, Date and Calendar suckiness that others have mentioned:

  • Class equality depends on the identity of the classloader. The result is that serialization and everything that depends on it is inherently broken.
  • the java.util.URL class. Equality of two distinct instances can change depending on whether you are online or not. Also, the classloader mechanism uses this class for some unfathomable reason.
  • the XMLGregorianCalendar that isn't... in other words, despite its name, it is not actaully a GregorianCalendar.
  • Every object in Java is a mutex, and has wait(), notify() and notifyAll() methods. While the synchronized keyword is very useful, I think it should be limited to objects that implement some Lock interface or something like that - like how the for-each loop is only useable on Iteratble objects.
link|flag
vote up 6 vote down

Bit of an open-ended question this one. Even in Object:

  • clone. Just remove it - no replacement. Absolute evil.
  • finalizer. Gah.
  • wait/notify/notifyAll. Wrongheaded approach to threading.
  • hashCode. Seems unfair to support hash but not ordered structures. Also it (together with ==) make small immutable value objects less efficient.
  • equals. Asymmetric. Should NPE on null argument.
link|flag
If you take a minute to learn the wait/notify/notifyAll functions you'll see that they're great for building higher-level concurrency blocks. Or you could just use everything in java.util.concurrent. – ReaperUnreal Oct 9 '08 at 19:56
1  
I wasn't particularly clear. My problem with them is that they are based around intrinsic locks. It's better to use specific lock objects rather than automatically expose the API for every instance of every class. – Tom Hawtin - tackline Oct 11 '08 at 0:34
Is there really that much of an issue with efficiency over equals/hashcode. I work on a high-volume trading system and have never found this to be an issue. Implementing Comparable gives you ordered structures. – Fortyrunner Jan 30 at 8:33
I'm not aware of efficiency problems with equals/hashCode. Not unless you write a really bad hash algorithm that causes HashMap to be full of collisions. The default implementations of equals and hashCode are inlineable and intrinsified. – Tom Hawtin - tackline Jan 30 at 13:52
vote up 7 vote down

Date being mutable

link|flag
vote up 11 vote down
 Boolean.getBoolean("true");
 Integer.getInteger("2");

.....

link|flag
vote up 9 vote down

One big mistake was to create String(byte[] bytes) constructor and String.getBytes() method. They are the source of many problems with character encoding in java.

Those developers who know nothing about encodings use these methods without care. Code works on their environment and in their language. Bad luck if you have to reuse their libraries.

It is OK to use default encoding if you use it consciously. String(byte[] bytes, Charset charset) and String.getBytes(Charset charset) helps you be conscious.

link|flag
vote up 4 vote down

From what I can tell, SimpleDateFormatter is convinced weeks start on Sunday and can't be dissuaded from this idea.

link|flag
2  
It's simple. :P – Chris Mazzola Oct 9 '08 at 16:48
Weeks do start on a Sunday in my part of the world! – John Topley Apr 27 at 8:47
vote up 3 vote down

Constructor of javax.naming.InitialContext requires Hashtable instead of a Map.

link|flag
2  
Just to nitpick, is JNDI really "core" Java? Doesn't the "x" in javax mean extension? – Andrew Swan Apr 27 at 8:39
vote up -2 vote down

In the String class:

public String(String string)

I don't know how many times I've seen code like

String cancel = new String("Cancel");

Sadly, this is the first example of a constructor introduced in Thinking in Java.

link|flag
Unfortunately for you, this is vital. There are many cases where you absolutely have to do String s1 = new String(s.substring(n, m)) – oxbow_lakes Oct 11 '08 at 0:09
What you say is not true, you could write String s1 = firstString.substring(n, m); without any problem. – Juan Carlos Oct 15 '08 at 11:39
Regarding the String constructor: the newly created string is a copy of the argument string. Unless an explicit copy of original is needed, use of this constructor is unnecessary since Strings are immutable. – Juan Carlos Oct 15 '08 at 11:40
Can anyone give example of when "explicit copy of original is needed"? – Pavel Feldman Jan 22 at 21:03
7  
Yes... if your original string is very large, and you want small substring, then it's better to create a copy via new String(). This way, large array of chars in original string is not referenced anymore, and can be GC-ed (if original String is not needed) – Peter Štibraný Jan 30 at 8:17
show 1 more comment
vote up 9 vote down

The java.sql API used to drive me crazy with its exception model. SQLException being a checked exception has led to enormous quantities of bad code around SQL calls: There's a million of DAO methods that either throw SQLException themselves, or just swallow or log exceptions. It should just be an unchecked exception: Unless you're building an SQL GUI tool, SQLExceptions usually mean that your code is broken or there's something wrong with the database server.

At the same time, SQLException doesn't give you much usable information on what went wrong - if you want to deal with errors in any meaningful way, you're forced to parse RDBMS-specific error messages.

This has been less of an issue since we have useable ORM frameworks. The Spring framework has also helped with it's higher-level JDBC support code and exception model.

link|flag
vote up 0 vote down

You can fake unsigned integer types by going up one storage class (byte->short, short->int, int->long). But you can't get an unsigned long.

link|flag
vote up 5 vote down

Lots of uses of the Interface Constants anti-pattern, especially in Swing.

link|flag
vote up 5 vote down

Iterator is in java.util, while Iterable is in java.lang, although it depends on Iterator. Wrong package dependency :-(, thus these packages are effectively tied together.

link|flag
I'd say that's a rather minor problem (compared to others mentioned here), as both packages are in the core API and will always exist. Iterator would probably haven been moved to java.lang when Iterable was introduced if that where a compatible change (which it absolutely isn't). – Joachim Sauer Jan 30 at 8:31
1  
It's not big problem usually, but it is one of many small issues. Modularity matters, and bad examples in core library don't make it easier for people to learn good practices. – Peter Štibraný Jan 30 at 13:49
vote up 2 vote down

RuntimeException should not inherit from (Checked)Exception. It should be reversed (and named changed to reflect this), or RuntimeException and CheckedException should both extend Exception, and Exception and Throwable should have no public constructors.

link|flag
1  
To be honest, I'd say that the real antipatter are checked exceptions themselves. – Michael Borgwardt Apr 27 at 9:03
vote up 2 vote down

My personal least favorite is that they have to retain the lovely public static final int literals for every pre-1.5 class. Why can't they enum clean the code base, por favor?

link|flag
1  
Downwards compatibility. It's extremely important to Sun, and rightfully so - IMO it's a major reason for Java's success in the business world. – Michael Borgwardt Apr 27 at 9:03
vote up 3 vote down

java.awt.BorderLayout uses NORTH, SOUTH, EAST, WEST instead of TOP, BOTTOM, LEFT, RIGHT. I also like the way they need to clarify it in the comments for those contants:

/**
 * The north layout constraint (top of container).
 */
public static final String NORTH  = "North";
link|flag
vote up 3 vote down

Here is a little list I have put together Java Convention Failure

One of my favourite is the rather long class name com.sun.java.swing.plaf.nimbus.InternalFrameInternalFrameTitlePaneInternalFrameTitlePaneMaximizeButtonWindowNotFocusedState

A non-haiku I wrote in its honour ;)

Internal frame
internal frame,
title pane
internal frame.

title pane
maximize button,
window not focused state
link|flag
vote up 0 vote down

Having public constructors instead of static factories that would return interfaces. Now they are stuck with concrete classes, and its harder to optimize things, or fix problems.

link|flag
vote up 0 vote down

Its not an API issue, but a core anti pattern for me is not allowing unreachable code. I definately don't think unreachable code should be encouraged but a warning (C# style) would be fine. I don't know how many times I've had to do this:

if (true) throw new IllegalStateException("Testing... 123");  

// Unreachable code ....

Its worse still if you want to skip a block of code temorarily, i.e. you need to wrap it in if (false) { ... }

link|flag
1  
At least in Eclipse, the default behavior (I think) is to warn about unreachable code. Not allowing unreachable code at all seems like a really stupid idea, especially in the absence of a preprocessor. – JesperE Jun 2 at 5:27
What can you do with this that you cannot do with block comments? I see no purpose in allowing unreachable code. – Christian Vest Hansen Oct 12 at 16:53
vote up 1 vote down

java.awt.Graphics.drawImage(Image img, ...) only accepts BufferedImage at runtime.

If you subclass Image and try to draw it, you get an IllegalArgumentException: Invalid Image variant.

And admitting this in a comment is even worse, if you look up in the source code you will see:

/*
 * In practice only a BufferedImage will get here.  
 */
link|flag

Your Answer

Get an OpenID
or

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