HashMap 和 Hashtable 有什么区别?

Posted yun---meng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HashMap 和 Hashtable 有什么区别?相关的知识,希望对你有一定的参考价值。

1 存储:HashMap 运行 key 和 value 为 null,而 Hashtable 不允许。
2 线程安全:Hashtable 是线程安全的,而 HashMap 是非线程安全的。
3 推荐使用:在 Hashtable 的类注释可以看到,Hashtable 是保留类不建议使用,
  推荐在单线程环境下使用 HashMap 替代,如果需要多线程使用则用 ConcurrentHashMap 替代。

 

以上是关于HashMap 和 Hashtable 有什么区别?的主要内容,如果未能解决你的问题,请参考以下文章

HashMap 和 Hashtable 有什么区别?

HashMap 和 Hashtable 有什么区别?

021 HashMap 和 Hashtable 有什么区别?

HashMap和HashTable的区别是什么

HashMap 和 Hashtable 的 6 个区别

HashTable和HashMap有什么区别已经你自己的理解(面试题)