vote up 8 vote down star
7

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.

flag
9  
Reduced life expectancy of keyboards due to the verbose class and method names. – David Dorward Jul 29 at 12:18
@David: I lolled. You should have put it as an answer: Since this is a community wiki, you'll take no rep losses from downvotes (or gains from upvotes). – R. Bemrose Jul 29 at 14:26

21 Answers

vote up 5 vote down

Reflection?
Allows you to do pretty much anything and break all rules.

link|flag
6  
Unless you have a SecurityManager. – Joachim Sauer Jul 29 at 11:17
vote up 17 vote down

Classloading, while powerful, causes pain all the time.

link|flag
vote up 29 vote down

Threading and concurrency, hands down.

This isn't just Java-specific though. Multithreading is by nature difficult.

link|flag
1  
Can't upvote enough. – Imagist Jul 30 at 23:20
3  
also worth noting that as of Java5, java.util.concurrent offers MANY advanced primitives to help make threads/concurrency both easier and safer to use. – basszero Jul 30 at 23:30
vote up 12 vote down

Java Native Interface

shudder

link|flag
why? i think its better that you can also do somethings faster in c++. – 01 Jul 29 at 15:25
yes, it's great for that but it's also dangerous as YOU are responsible for managing the memory. A company I worked out exposed their complicated C library using JNI and just fresh out of university I was given the responsibility to make it work. Object A kept pointers to Object B and C and D (and vice-versa) and each was stupidly exposed as a separate java object. Object A was occasionally cleaned up by the garbage collector and objects B, C and D were left around with an invalid dangling pointer. User accessed object B... BOOOM! :-D – Gordon Carpenter-Thompson Jul 29 at 17:54
now add threads and signals into JNI and you're REALLY screwed – basszero Jul 30 at 23:29
vote up 2 vote down

The switch statement and lazy people who forget breaks...

link|flag
3  
I just don't use switch statements – Tim Büthe Jul 29 at 11:39
I don't blame you: if-else is so much more readable – oxbow_lakes Jul 29 at 14:35
In C# they removed the fall through behaviour... In Java I like to comment where I want to fall through. – pjp Jul 29 at 14:36
vote up 1 vote down

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.

link|flag
vote up 2 vote down

RMI (Remote Method Invocation)

link|flag
naa, maybe "Most useless feature of Java" – shoosh Jul 29 at 15:13
why? its easy to hack? o_O – 01 Jul 29 at 15:39
vote up 9 vote down

Misunderstandings and source for bugs? Here:

((aString == anotherString) && (aString.equals(anotherString)) 
                              // can be true or false - you never know

and another classic one:

aString.equals("I love NPE"); // **Boom** if aString == null
link|flag
4  
I like to swap the stings like this: "I love NPE".equals(aString); or use commons lang ObjectUtils.equals(aString, "I love NPE"); for that – Tim Büthe Jul 29 at 11:42
2  
Sure, that's how it has to be done - but I'm surprised how many programmers don't know it or forget about it :-)) – Andreas_D Jul 29 at 12:19
this should be the #1 answer, so frustrating when switching from C# to Java – Allen Jul 29 at 14:06
I've never heard of such an approach. I learned something new today! – Dopyiii Jul 29 at 15:09
vote up 5 vote down

The idea that has pervaded Enterprise that anyone can code.

link|flag
That's not really a Java feature, is it? – Joachim Sauer Jul 29 at 11:49
I don't think that Dr "Bones" McCoy can code ... :-) – Stephen C Jul 29 at 11:52
2  
Java has helped to bring this mindset to managers. – Mnementh Jul 29 at 11:52
2  
@Stephen C, no. He can't. He's a doctor, not a software engineer. – Thomas Owens Jul 29 at 12:21
Hang on a minute. I'm a doctor AND a software engineer. :-) – Stephen C Aug 17 at 3:43
vote up 0 vote down

Reflection or Serialization.

link|flag
vote up 14 vote down

The assumption: Garbage collection = No memory leaks

link|flag
2  
Reading this as I try to find a memory leak in my own code :( – RHSeeger Jul 29 at 15:30
But it does prevent memory leaks! All that data that filled up your computer's RAM and swap partition is, technically, still accessible... ;) – Jeremy Friesner Aug 17 at 4:27
vote up 2 vote down

The fact that Integer, Boolean and so on are immutable. With Autoboxing it can get especially weird:

public static void test(Integer i)
{
    ++i;
}

This method actually does nothing, except creating a new Integer and assigning it to i. It doesn't modify the object pointed to by i.

link|flag
2  
In which widly used language do you see mutable basic types ? – e-satis Jul 29 at 13:58
@e-satis: C and C++, for example. But I'm not saying it's a bad thing. In Java it's particularly misleading though, because most of the time we use int instead of Integer. (There isn't this problem in Python, for example). And autoboxing makes Integer look like int, which is even more confusing IMO. – Bastien Léonard Jul 29 at 14:32
i could also do i=null in that method, i dont see any problem here. I could write code that wont compile too. – 01 Jul 29 at 15:41
vote up 0 vote down

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.

link|flag
vote up 1 vote down

Sending parameters only by values.

link|flag
Why is that dangerous? – mmyers Jul 29 at 19:15
Mainly because beginner programmers are not fully conscious about this. It is rather a missunderstanding of the intimate mechanisms, rather of the language. – lmsasu Jul 30 at 6:42
I personally would think it's more dangerous, if parameters are passed by variable. Methods would have side-effects. Very confusing. – Mnementh Aug 17 at 9:25
It's dangerous because it's not obvious and often forgotten. – grigory Aug 17 at 18:07
Passing parameters only by reference would be far more dangerous, IMO – finalman Sep 15 at 13:48
vote up 2 vote down

The implementation of inner classes seems to be a good candidate. This article has a detailed discussion.

link|flag
vote up 1 vote down

The belief that finalize() will be executed in a timely manner is a great way to run out of resources other than just memory.

link|flag
The absence of real destructors and the finalizers that easy to confuse with destructors bring a complex class of problems. – Mnementh Jul 31 at 6:56
vote up 2 vote down

Synchronization. Too often 'synchronized' is stuck on a method in an attempt to make a critical section.

link|flag
vote up 4 vote down

Allow for invoking non-final methods in constructor is a big pitfall!

I wrote a similar code 4 years ago:

abstract class BasicModel {
    public BasicModel(int id) {
        initModel(id);
    }

    abstract protected void initModel(int id);
}

class AdvancedModel extends BasicModel {
    private int id = 0;

    public AdvancedModel(int id) {
        super(id);
    }

    protected void initModel(int id) {
        this.id = id;
    }

    public int getId() {
        return id;
    }

    public static void main(String[] args) {
        AdvancedModel model = new AdvancedModel(10);
        System.out.println("id = " + model.getId());
    }
}

Gotcha, it printed "id = 0" to the standard output!!

link|flag
That's really a big problem. Should be forbidden, you're right. – Mnementh Aug 1 at 9:00
vote up 0 vote down

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.

link|flag
vote up 1 vote down

Autoboxing and Unboxing.
Makes for the following code to be legal (resulting in poor performance):

Long result = 0L;
for(Integer i = 0; i < 100000; i++)
{
  result = i * i + result /2;
}
link|flag
You are so right! Java was way better without them... – Massimiliano Fliri Sep 9 at 12:14
vote up 0 vote down

JRE - if Java were never run, it wouldn't be dangerous.

link|flag

Your Answer

Get an OpenID
or

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