HashMap和hashtable区别

HashMap是非线程安全的,Hashtable是线程安全的

HashMap的键值都可以是Null,Hashtable的键值不可是Null

HashMap继承自AbstractMap类  ,Hashtable继承Dictiona类

ps:Properties继承自Hashtable类

猜你喜欢

转载自blog.csdn.net/weixin_42023748/article/details/80230131