Here's a nice pitfall I just encountered. Consider a list of integers:

List<Integer> list = new ArrayList<Integer>();
list.add(5);
list.add(6);
list.add(7);
list.add(1);

Any educated guess on what happens when you execute list.remove(1)? What about list.remove(new Integer(1))? This can cause some nasty bugs.

What is the proper way to differentiate between remove(int index), which removes an element from given index and remove(Object o), which removes an element by reference, when dealing with lists of integers?


The main point to consider here is the one @Nikita mentioned - exact parameter matching takes precedence over auto-boxing.

link|improve this question

2  
A: the real issue here is that someone at Sun somehow thought having (immutable) wrapper classes around primitives was smart and later on someone thought that having auto-(un)boxing was even smarter... AND THAT PEOPLE KEEP USING LAME DEFAULT APIs WHEN BETTER ONES EXIST. For a lot of purposes there are way better solution than new Arraylist<Integer>. For example Trove provides things a TIntArrayList. The more I program in Java (SCJP since 2001), the less I use wrapper classes and the more I use well-designed APIs (Trove, Google, etc. comes to mind). – SyntaxT3rr0r Dec 26 '10 at 15:07
feedback

7 Answers

up vote 12 down vote accepted

Java always calls the method that best suits your argument. Auto boxing and implicit upcasting is only performed if there's no method which can be called without casting / auto boxing.

The List interface specifies two remove methods (please note the naming of the arguments):

  • remove(Object o)
  • remove(int index)

That means that list.remove(1) removes the object at position 1 and remove(new Integer(1)) removes the first occurrence of the specified element from this list.

link|improve this answer
1  
Picking a nit: Integer.valueOf(1) is better practice than new Integer(1). The static method can do caching and such, so you'll get better performance. – decitrig Apr 24 '11 at 15:34
feedback

You can use casting

list.remove((int) n);

and

list.remove((Integer) n);

It doesn't matter if n is an int or Integer, the method will always call the one you expect.

link|improve this answer
it would be nice if you could explain why that is the case :) [autoboxing conditions...] – Yuval Adam Dec 26 '10 at 14:44
By using casting, you ensure the compiler sees the type you expect. In the first case '(int) n' can only be of type int in the second case '(Integer) n' can only be of type Integer. 'n' will be converted/boxed/unboxed as required or you will get a compiler errors if it cannot. – Peter Lawrey Dec 26 '10 at 14:53
feedback

I don't know about 'proper' way, but the way you suggested works just fine:

list.remove(int_parameter);

removes element at given position and

list.remove(Integer_parameter);

removes given object from the list.

It's because VM at first attempts to find method declared with exactly the same parameter type and only then tries autoboxing.

link|improve this answer
feedback

list.remove(4) is an exact match of list.remove(int index), so it will be called. If you want to call list.remove(Object) do the following: list.remove((Integer)4).

link|improve this answer
feedback

Note that even if the VM did not do the right thing, which it does, you could still ensure proper behaviour by using the fact that remove(java.lang.Object) operates on arbitrary objects:

myList.remove(new Object() {
  @Override
  public boolean equals(Object other) {
    int k = ((Integer) other).intValue();
    return k == 1;
  }
}
link|improve this answer
feedback

See also: Java Puzzlers, Episode VI, the puzzle starting at about 1:10 into the talk.

link|improve this answer
cool... thanks! – Yuval Adam Dec 26 '10 at 14:44
feedback

Any educated guess on what happens when you execute list.remove(1)? What about list.remove(new Integer(1))?

There is no need to guess. The first case will result in List.remove(int) being called, and the element at position 1 will be removed. The second case will result in List.remove(Integer) being called, and the element whose value is equal to Integer(1) will be removed. In both cases, the Java compiler selects the closest matching overload.

Yes, there is potential for confusion (and bugs) here, but it is a fairly uncommon use-case.

When the two List.remove methods were defined in Java 1.2, the overloads were not ambiguous. The problem only arose with the introduction of generics and autoboxing in Java 1.5. In hind-sight, it would have been better if one of the remove methods had been given a different name. But it is too late now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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