HashMap与HashTable的区别

Posted jxxblogs

tags:

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

1.HashTable继承自Dictionary抽象类,HashMap实现Map接口

2.HashTable的方法都是synchronized的,HashMap不是

3.HashMap允许键或值为null,HashTable不可以

4.HashTable保留了Contains方法,HashMap没有

5.内部实现使用的数组初始化和扩容方式不同。HasTable默认容量为11,HashMap为16。Hashtable扩容时,将容量变为原来的2倍加1,而HashMap扩容时,将容量变为原来的2倍。

 

参考链接:HashMap与HashTable的区别

以上是关于HashMap与HashTable的区别的主要内容,如果未能解决你的问题,请参考以下文章

HashMap与HashTable的区别

HashMap与HashTable的区别

HashMap与HashTable的区别

HashMap与Hashtable的区别

Hashtable与HashMap有啥区别?

hashMap与hashTable的区别