In most of programming languages, we preferred using a dictionary over a hashtable . What are the reasons behind it?

link|improve this question

71% accept rate
feedback

12 Answers

up vote 293 down vote accepted

FWIW, a Dictionary is a hash table.

If you meant "why do we use the Dictionary class instead of the Hashtable class?", then it's an easy answer: Dictionary is a generic type, Hashtable is not. That means you get type safety with Dictionary, because you can't insert any random object into it, and you don't have to cast the values you take out.

link|improve this answer
66  
And also generic collections are a lot faster as there's no boxing/unboxing – Chris S Jan 26 '09 at 12:45
2  
Not sure about a Hashtable with the above statement, but for ArrayList vs List<t> it's true – Chris S Jan 26 '09 at 12:46
7  
Hashtable uses Object to hold things internally (Only non-generic way to do it) so it would also have to box/unbox. – Guvante Apr 17 '09 at 5:29
feedback

Because Dictionary is a generic class ( Dictionary<TKey, TValue> ), so that accessing its content is type-safe (i.e. you do not need to cast from Object, as you do with a Hashtable).

Compare

var customers = new Dictionary<string, Customer>();
...
Customer customer = customers["Ali G"];

to

var customers = new Hashtable();
...
Customer customer = customers["Ali G"] as Customer;
link|improve this answer
feedback

FYI: In .Net Hashtable is thread safe for use by multiple reader threads and a single writing thread, while in Dictionary public static members are thread safe, but any instance members are not guaranteed to be thread safe.

We had to change all our Dictionaries back to Hashtable because of this.

link|improve this answer
6  
Fun. The Dictionary<T> source code looks a lot cleaner and faster. It might be better to use Dictionary and implement your own synchronization. If the Dictionary reads absolutely need to be current, then you'd simply have to synchronize access to the read/write methods of the Dictionary. It would be a lot of locking, but it would be correct. – Triynko May 14 '10 at 18:09
5  
Alternatively, if your reads don't have to be absolutely current, you could treat the dictionary as immutable. You could then grab a reference to the Dictionary and gain performance by not synchronizing reads at all (since it's immutable and inherently thread-safe). To update it, you construct a complete updated copy of the Dictionary in the background, then just swap the reference with Interlocked.CompareExchange (assuming a single writing thread; multiple writing threads would require synchronizing the updates). – Triynko May 14 '10 at 18:15
4  
.Net 4.0 added the ConcurrentDictionary class which has all public/protected methods implemented to be thread-safe. If you don't need to support legacy platforms this would let you replace the Hashtable in multithreaded code: msdn.microsoft.com/en-us/library/dd287191.aspx – Dan Neely Jan 27 at 20:49
anonymous to the rescue. Cool answer. – unkulunkulu Mar 11 at 21:34
feedback

Dictionary <<<>>> Hashtable differences:

  • Generic <<<>>> Non-Generic
  • Needs own thread synchronization <<<>>> Offers thread safe version through Synchronized() method
  • Enumerated item: KeyValuePair <<<>>> Enumerated item: DictionaryEntry
  • Newer (> .NET 2.0) <<<>>> Older (since .NET 1.0)
  • is in System.Collections.Generic <<<>>> is in System.Collections
  • Request to non-existing key throws exception <<<>>> Request to non-existing key returns null

Dictionary / Hashtable similarities:

  • Both are internally hashtables == fast access to many-item data according to key
  • Both need immutable and unique keys
  • Keys of both need own GetHash() method

Similar .NET collections (candidates to use instead of Dictionary and Hashtable):

  • ConcurrentDictionary - thread safe (can be safely accessed from several threads concurrently)
  • HybridDictionary - optimized performance (for few items and also for many items)
  • OrderedDictionary - values can be accessed via int index (by order in which items were added)
  • SortedDictionary - items automatically sorted
  • StringDictionary - strongly typed and optimized for strings
link|improve this answer
2  
+ When requesting a key that doesn't exists, Hashtable returns null and Dictionary<,> throws an Exception, this can bites when switching to Dictionary... – Guillaume86 Jul 7 '11 at 10:39
1  
We can use concurrentDictionary(in .NET 4.0) for threadsafe. – WAP Guy Feb 1 at 11:24
feedback

In .NET, the difference between Dictionary<,> and HashTable is primarily that the former is a generic type, so you get all the benefits of generics in terms of static type checking (and reduced boxing, but this isn't as big as people tend to think in terms of performance - there is a definite memory cost to boxing, though).

link|improve this answer
feedback

People are saying that a Dictionary is the same as a hash table.

This is not necessarily true. A hash table is an implementation of a dictionary. A typical one at that, and it may be the default one in .NET, but it's not by definition the only one.

You could equally well implement a dictionary with a linked list or a search tree, it just wouldn't be as efficient (for some metric of efficient).

link|improve this answer
2  
MS docs say: "Retrieving a value by using its key is very fast, close to O(1), because the Dictionary <(Of <(TKey, TValue >)>) class is implemented as a hash table." - so you should be guaranteed a hashtable when dealing with Dictionary<K,V>. IDictionary<K,V> could be anything, though :) – snemarch Sep 23 '10 at 13:52
3  
@rix0rrr - I think you've got that backwards, a Dictionary uses a HashTable not a HashTable uses a Dictionary. – Joseph Hamilton Aug 9 '11 at 17:22
feedback

The Hashtable is a loosely-typed data structure, so you can add keys and values of any type to the Hashtable. The Dictionary class is a type-safe Hashtable implementation, and the keys and values are strongly types. When creating a Dictionary instance, you must specify the data types for both the key and value.

link|improve this answer
feedback

one more difference that i can figure out is we can not use dictionary (generics) with web services the reason is no web service standard supports genrics standard.

link|improve this answer
feedback

This is not necessarily true. A hash table is an implementation of a dictionary. A typical one at that, and it may be the default one in .NET, but it's not by definition the only one.

I'm not sure that this is required by the ECMA standard, but the MSDN documentation very clearly calls it out as being implemented as a hashtable. They even provide the SortedList class for times when an alternative is more reasonable.

link|improve this answer
feedback

Notice that MSDN says: "Dictionary<(Of <(TKey, TValue>)>) class is implemented as a hash table" not "Dictionary<(Of <(TKey, TValue>)>) class is implemented as a HashTable" Dictionary is NOT implemented as a HashTable, but is implemented following the concept of a hash table. The implementation is unrelated to the HashTable class because of the use of Generics, although internally Microsoft could have used the same code and replaced the symbols of type Object with TKey and TValue. In .NET 1.0 Generics did not exist; this is where the HashTable and ArrayList originally began.

link|improve this answer
feedback

According to what I see by using reflector:

[Serializable, ComVisible(true)]
public abstract class DictionaryBase : IDictionary, ICollection, IEnumerable
{
    // Fields
    private Hashtable hashtable;

    // Methods
    protected DictionaryBase();
    public void Clear();
.
.
.
}
Take note of these lines
// Fields
private Hashtable hashtable;

so we can be sure that DictionaryBase uses a HashTable internally.

link|improve this answer
6  
System.Collections.Generic.Dictionary<TKey,TValue> doesn't derive from DictionaryBase. – snemarch Sep 23 '10 at 13:48
feedback

Dictionary<> is a generic type and so its type safety.

You can insert any value type in HashTable and this may sometime throw an exception. But Dictionary<int> will only accept integer value and similarly Dictionary<string> will only accept strings.

So better to use Dictionary<> instead of HashTable

link|improve this answer
feedback

protected by Will Nov 23 '10 at 15:32

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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