标签:com htm table map nbsp www cti ref syn
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的区别
标签:com htm table map nbsp www cti ref syn
原文地址:https://www.cnblogs.com/jxxblogs/p/11598688.html