why HashTable not allow null key and value
Answer Posted / eknath
To successfully store and retrieve objects from a hashtable,
the objects used
as keys must implement the hashCode method and the equals
method.
In a nutshell, since null isn't an object, you can't call
.equals() or .hashCode() on it, so the Hashtable can't
compute a hash to use it as a key.
HashMap is newer, and has more advanced capabilities, which
are basically just an improvement on the Hashtable
functionality. As such, when HashMap was created, it was
specifically designed to handle null values as keys and
handles them as a special case.
Specifically, the use of null as a key is handled like this
when issuing a .get(key):
(key==null ? k==null : key.equals(k))
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of using javap?
Is there is any difference between a scrollbar and a scrollpane?
When should I use stringbuffer?
How the interruptible method gets implemented?
What is the Difference between Final Class && Abstract Class?
Addition to previous section relative word 5th one was Putrid ans: rotten, also there was prob. in 1st section on bucket weight ans:10kg, also there was a prob. on train speed to find bridge length ans:800 mtrs.
What do you understand by synchronization?
What are conditionals and its types?
What is the purpose of a parameter?
Which are different kinds of source code?
Why do people says “java is robust”?
How do you take thread dump in java?
What are the various access specifiers for java classes?
What best practices should you follow while writing multithreaded code in java?
Can constructor be static or final?