I have the following TreeMap:
TreeMap<String, Integer> distances = new TreeMap<String, Integer>();
and it contains both strings, "Face" and "Foo", with appropriate values, such that:
System.out.println(distances);
Yields:
{Face=12, Foo=2}
However, distances.get(Face) returns null, even though distances.get(Foo) properly returns 2. Previously, distances.get(Face) worked, but for some reason, it stopped working. Note I print out the map right before calling get() for both keys, so I haven't accidentally changed Face's value to null. Has anyone else ever encountered this problem? Is there anything I can do? I'm having a terrible time simply trying to figure out how to debug this problem.
NOTE: In the real code I'm not actually using Strings, but a different object, so it's: TreeMap<Object, Integer>. So it's not simply a confusion of variable names vs. literal strings.
SECOND NOTE: I also feel pretty confident about my implementations of hashcode() and equals() for the object I'm using. (Also, if my implementations weren't correct, wouldn't it not work from the beginning? Instead of stopping to work randomly?)
TreeMap<String, Integer>not working. And include enough of your actual code to give us a clue ... – Stephen C Apr 21 '10 at 4:27TreeMapwith aComparatoror have your real classes implementedComparable? If so, can you ensure that compare(a,b) == (-1*compare(b,a)) ? – akf Apr 21 '10 at 4:44toStringfor your objects then check that as well. Also usedistances.containsKeyto work out if the key is (a) absent or (b) present and mapped to null – barrowc Apr 21 '10 at 6:34