what is Hashmap & Hashtable wirh example?
Answers were Sorted based on User's Feedback
Answer / 20/04/2008
hashmap class is not syncronized but hasTable is syncronized
. both stores key and value. hashtable is part of legasy
class we can use enumerator interface of this hashtable class.
| Is This Answer Correct ? | 27 Yes | 3 No |
Answer / rameshreddy.k
---HashTable is synchronised BUT hashmap is not synchronised
---HashTable not allow null keys and null values BUT
HashMap allow only one null key and multiple null values
---HashTable not allow Duplicate keys and Douplicate values
are allowed.
| Is This Answer Correct ? | 12 Yes | 3 No |
Answer / leosun
Hashtable will not allow null key nor values,where as
Hashmap allows null key and values
| Is This Answer Correct ? | 14 Yes | 8 No |
Answer / venki
1. Hashtable is synchronized which means Hashtable is thread
safe and that can be shared with multiple threads (Suitable
for multi threaded applications), HashMap not synchronized
(Suitable for single threaded applications).
2. Iterator in the Hashtable is fail-fast iterator and throw
ConcurrentModificationException if any other thread modifies
the map by adding or removing elements from the Map, while
Emnumeration in HashMap not.
3. Hashtable is slower than HashMap because of synchronization.
4. HashTable does not allow null for both keys and values,
you will get NullPointerException if you add null. whereas
HashMap allows one null key and any number of null values.
5. Hashtable and HashMap allows duplicate values.
6. Hashtable store objects in insertion order but HashMap
doesn’t store objects in insertion order, to store objects
in insertion order use LinkedHashMap.
| Is This Answer Correct ? | 0 Yes | 1 No |
How do you check if a number is a perfect square?
What classes of exceptions may be thrown by a throw statement?
I want to persist data of objects for later use. What is the best approach to do so?
can we write a program with out a class in core java?
my method "abc" return array of interface "xyz" and "pqr" is abstract class implements abc and class "jkl" extends pqr My problem 1) when i call abc it retrun array xyz how can i do this hint xyz refer_xyz = new jkl(); but i can't create array. 2)I want to access method of jkl using reference of xyz??
when we have to use final class in java?
what is abstract method with example?
What is purpose of keyword void?
take any 4 input numbers. like 2345.. wanted out put is All 16 combinations of the number 2345.. for example- taking input as 4565 output- 5654 4556 4655..
In C we use only compiler. Why java uses both compiler and interpreter? What is its significance?
Explain about narrowing conversion in java?
What is a package in java? List down various advantages of packages.