What is your "favorite" API annoyance or missing feature or misengineered part?
|
2
|
|||||||||||||||
|
|
|
Edit: Oh, one more comes to mind: |
||||||||||||||
|
|
|
My recently found annoyance with Java. BufferedImages have the functions getRGB and setRGB which are nice, however they return an int and not Color. So if you would like to get the individual components without direct manipulation you would have to create a color object just for that, and then convert it back to int just to set the RGB. |
|||
|
|
|
|
(Input|Output)Stream.close() throws a checked exception which means you have to litter your stream handling code with nested try/catch blocks. |
|||
|
|
|
|
Integer, Double,... comparison.
or
and of course all the analog. |
|||
|
|
|
|
The Exception hierarchy has always been broken in my eyes:
I've always thought it would make more sense for all java.lang.Exception and subtypes to be checked exceptions. Having java.lang.RuntimeExeption inherit from java.lang.Exception but being unchecked is just broken. |
|||
|
|
|
|
I hate how JDBC Ultimately, it exposes the design flaw of |
|||
|
|
|
|
Poor choices for of names are a favourite pet hate. Classes which extend a class of the same name. com.sun.corba.se.spi.orb.ORB extends com.sun.corba.se.org.omg.CORBA.ORB extends org.omg.CORBA_2_3.ORB extends org.omg.CORBA.ORB Error which is not an error com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError extends Exception Exception which is not an exception javax.print.FlavorException which is an interface Confusing mix of case com.sun.org.apache.bcel.internal.Constants.ArrayType which implement equals and hashcode but NOT hashCode() Stupidly long class name com.sun.java.swing.plaf.nimbus. InternalFrameInternalFrameTitlePaneInternalFrameTitlePaneMaximizeButtonWindowNotFocusedState The last one I liked so much I wrote a poem
|
|||
|
|
|
|
Closing streams is a night mare. close() throwing an exception ruins your code and does not help you at all. If you rethrow the exception of close() you loose the original exception and the original exception is usually the important one.
|
||||||||
|
|
|
ByteBuffer as a Class with no corresponding Interface in NIO. There is no way to create a "custom" ByteBuffer implementation. (ByteBuffer can not be extended due to access levels of the constructors.) |
|||
|
|
|
Aside from SimpleDateFormat not being thread safe, the equals and hash code methods of java.lang.URL doing external lookups, which is particularly annoying if the addresses point to two different virtual hosts with the same IP address. |
|||
|
|
|
|
Not so much an annoyance as just plain wrong: there is a case where the following code can enter the final
The case is:
In case you wonder why: Some comparisons are unboxed, others are not. |
|||
|
|
|
The Cloneable interface does not define the clone method (it's just a marker interface). So even if you know that an object implements Cloneable, you don't know whether it can actually be cloned (it might not have a public clone method). |
||||
|
|
|
My favourite is |
||||
|
|
|
that a method having an argument of type
leads to the same signature as
does... |
|||
|
|
|
+ the points raised in other posts (especially Date). |
||||||
|
|
|
String comparison:
instead of
"You can't be serious!" -- John McEnroe |
|||
|
|
|
There's a String.split() method, but no String.join(). So annoying. |
||||||||
|
|
|
I think java persistent API |
||||
|
|
|
I hate the fact that Java does not allow extracting static class metadata at compile (=coding) time. For example, there is no way to statically to refer to a function's name or a field's name for later reflection-use (for example). You must use a dummy constant (final static String FIELD_NAME = "fieldName") instead which is dumb as it could be more easily solved via native meta data reference (think enum and think enum's getName etc. or similar). However, http://projectlombok.org/ can spice up java just like that. But why is this not yet native java fuctionality? It should have been for so long now ... |
|||
|
|
|
|
|
||||
|
|
|
+1 for Date/Calendar API Also the implementation of generics is pretty bad. Type erasure leads to some weird situations that are difficult to deal with. Also wildcards are confusing from time to time even after using them for years. One more gripe is that the generics syntax is overly verbose:
This will be fixed in Java 7 with generic type inference so the above line will end up looking like this:
|
|||
|
|
|
|
Oh gosh... I read the JavaDocs of the entire JDK for my Ph.D. and found so many annoyances beyond what already annoyed me from day-to-day programming. To name a few from my own experience though:
That being said, Hindsight is 20/20. It's hard to come up with the perfect API the first time around, and even harder to rectify it while maintaining backward compatibility. |
||||||||
|
|
|
SimpleDateFormat is not thread-safe. I mean, how hard can that be to fix ? |
||||||||||||||
|
|
|
BalusC beat me to the date API, so I'll list my second one: The fact that |
||||||||||||||
|
|
|
Missing of operator overloading. |
||||||||||||||||
|
|
|
int, double, and other primitives cannot be used as generics |
||||||||||||||||
|
|
|
Mine is that Therefore I find myself too much writing this code:
UPDATE After Pascal's comment showed me how all my code is buggy, should have been:
|
||||||||||||
|

