vote up 1 vote down star

Possible Duplicate:
What are the reasons why Map.get(Object key) is not (fully) generic

From the JDK Documentation, the put method:

  public V put(K key, V value)

but, the get method:

  public V get(Object key)

Any ideas?

Note: In some code I inherited, there is a bug, where someone used a String as a parameter to the get method of a Hashtable with an Integer key.

flag
I feel your pain, I've been bit by this one before. Lost couple a hours tracking it down. – Will Hartung Nov 4 at 16:02

closed as exact duplicate by Jon Skeet, bdonlan, erickson, bruno conde, Ben S Nov 4 at 16:03

3 Answers

vote up 0 vote down

Semi-duplicate : http://stackoverflow.com/questions/1145121/why-does-this-code-with-generics-compile/1145126#1145126

The link is also a duplicate :P It talks about Map not HashTable but the reasoning is the same.

link|flag
vote up 0 vote down

The get method will take any Object as the key simply because any object is able to be stored in a HashMap (as all objects are a subclass of type Object).

It just checks the .equals method for that Object to return the match in the HashMap.

link|flag
But why doesn't it take a K as a parameter? – abendigo Nov 4 at 16:00
This doesn't explain why they wouldn't use the generics type provided when creating the collection. – Ben S Nov 4 at 16:01
vote up 1 vote down

This allows any Object which is equivalent to a given key to get the value.

For example, you may have two classes that override the equals method to return true in case of being compared to each-other. Since the objects are equivalent, they should both be able to get the value.

This is the same reason the equals method has an Object parameter.

link|flag
But why doesn't it take A K as a parameter? That way at least the compiler can tell me I've made a mistake. – abendigo Nov 4 at 16:01
Because if it took only objects of type K, then you wouldn't be able to get the value using an object of a different type, even though that object is equivalent to the one of type K. – Ben S Nov 4 at 16:03
Wouldn't this reasoning also apply to put? – alphazero Nov 4 at 16:04

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