Which feature of the Java-language is the source of the most misunderstandings and bugs in your experience? The scope of this question is about the language, not the class-library.
|
7
|
|||||||
|
|
|
Reflection? |
||||
|
|
|
Classloading, while powerful, causes pain all the time. |
|||
|
|
|
|
Threading and concurrency, hands down. This isn't just Java-specific though. Multithreading is by nature difficult. |
|||
|
|
Java Native Interface shudder |
||||||
|
|
|
The switch statement and lazy people who forget breaks... |
||||||||
|
|
|
As a source of bugs: concurrency. Since 1.5 life for the programmer is a lot easier thanks to java.util.concurrent though. For misunderstanding: writing a good hashCode() method, serialization and class versions. |
|||
|
|
|
|
RMI (Remote Method Invocation) |
|||
|
|
Misunderstandings and source for bugs? Here:
and another classic one:
|
||||||||||||
|
|
|
The idea that has pervaded Enterprise that anyone can code. |
||||||||||||||
|
|
|
Reflection or Serialization. |
|||
|
|
|
|
The assumption: Garbage collection = No memory leaks |
||||||
|
|
|
The fact that
This method actually does nothing, except creating a new |
||||||||
|
|
|
The take-first-found approach to class search is also risky. It's not frequently a problem, but when it is, it's a bi*tch to debug. I'm talking about how classes are searched in the specified classpath; too easy to end up with conflicting versions when using different libraries that are out of synch and include (and export) too many common classes. |
|||
|
|
|
|
Sending parameters only by values. |
||||||||||
|
|
|
The implementation of inner classes seems to be a good candidate. This article has a detailed discussion. |
|||
|
|
|
|
The belief that finalize() will be executed in a timely manner is a great way to run out of resources other than just memory. |
|||
|
|
|
Synchronization. Too often 'synchronized' is stuck on a method in an attempt to make a critical section. |
|||
|
|
|
|
Allow for invoking non-final methods in constructor is a big pitfall! I wrote a similar code 4 years ago:
Gotcha, it printed "id = 0" to the standard output!! |
|||
|
|
|
The fact that object variables are actually object references (and only references) is so fundamental and pervasive in Java that it should be at the top of this list. The corollary: since everything in Java is passed by value objects are never passed at all. This fact alone makes Java very dangerous when forgotten. |
|||
|
|
|
|
Autoboxing and Unboxing.
|
|||
|
|
|
JRE - if Java were never run, it wouldn't be dangerous. |
|||
|
|
