I have an object in a LinkedHashSet that implements equals, hashCode and compareTo (in a superclass) but when I try to remove that exact object from the set set.remove(obj) the remove method returns false and the object remains in the set. Is the implementation of LinkedHashSet supposed to call the equals() method of its objects? Because it doesn't. Could this be a java bug? I'm running 1.6.0_25.
|
| ||||
|
show 1 more comment
feedback
|
|
My guess would be that your object's | |||||||||||||
feedback
|
|
Perhaps you're passing in a reference to a different object to the remove method? Are you sure you didn't change the reference in any way? Also make sure that | |||||||||
feedback
|
|
The chances of this being a bug in Assuming that this is a bug in your code, then it could be due to a number of things. For instance:
Now, I know that you have dismissed some of these explanations. But that may have been premature. Review the evidence that you based that dismissal on. Another approach you could use is to use a Java debugger to forensically examine the data structures (e.g. the innards of the | ||||
|
feedback
|
equals()andhashCode()– Óscar López Oct 26 '11 at 2:11Sets usehashCode. – Bhesh Gurung Oct 26 '11 at 2:12equalson the object you are passing to remove and the object you think should be removed first. – Ray Toal Oct 26 '11 at 2:13