How about (stealing the example from the article) ...
Map<String, Integer> m = new TreeMap<String, Integer>();\nint i = m.get("not_yet_in_map");Should "i" be zero, or should there be a null pointer exception thrown? (remember that get returns a null pointer of the key doesn't exist).