Hashtable和HashMap的区别

1、两者继承的直接父类不同:Hashtable继承自Dictiionary,HashMap继承自AbstractMap,这一区别可以通过两者的源码明显地看到:

public class HashMap<K,V>
    extends AbstractMap<K,V>
    implements Map<K,V>, Cloneable, Serializable

public class Hashtable<K,V>
    extends Dictionary<K,V>
    implements Map<K,V>, Cloneable, java.io.Serializable

2、

Hashtable的put方法如下:

public synchronized V put(K key, V value) {
  // Make sure the value is not null 
  if (value == null) { 
    throw new NullPointerException(); 
  } 
  // Makes sure the key is not already in the hashtable. 
  Entry tab[] = table; 
  int hash = key.hashCode(); 
  int index = (hash & 0x7FFFFFFF) % tab.length; 
  for (Entry e = tab[index]; e != null; e = e.next) { 
    if ((e.hash == hash) && e.key.equals(key)) { 
      V old = e.value; 
      e.value = value; 
      return old; 
    } 
  } 

  modCount++; 
  if (count >= threshold) { 
    // Rehash the table if the threshold is exceeded 
    rehash(); 
    tab = table; 
    index = (hash & 0x7FFFFFFF) % tab.length; 
  } 

  // Creates the new entry. 
  Entry e = tab[index]; 
  tab[index] = new Entry(hash, key, value, e); 
  count++; 
  return null; 
}
HashMap的put方法如下:

public V put(K key, V value) { 
  if (key == null)
    return putForNullKey(value); 
  int hash = hash(key.hashCode()); 
  int i = indexFor(hash, table.length); 
  for (Entry e = table[i]; e != null; e = e.next) { 
    Object k; 
    if (e.hash == hash && ((k = e.key) == key || key.equals(k))) { 
      V oldValue = e.value; 
      e.value = value; 
      e.recordAccess(this); 
      return oldValue; 
    } 
  } 
  modCount++; 
  addEntry(hash, key, value, i);
  return null; 
} 
通过比对Hashtable与HashMap的put方法,我们很容易得出这样的结论:

        a、Hashtable的put方法是同步的,线程安全的;HashMap的put方法不是同步的,非线程安全的:由此可见在多线程情况下应该使用Hashtable中的put方法,反之应该使用HashMap中的put方法;由此也可以得出这样的结论Hashtable的put方法效率低于HashMap的put方法;

        b、在向Hashtable中put数据时,key与value均不能为null,而在向HashMap中put数据时,key与value都可以为空;




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值