摘要: HashMap与HashTable的区别 HashMap没有考虑同步,是线程不安全的;Hashtable使用了synchronized关键字,是线程安全的 HashMap允许K/V都为null;后者K/V都不允许为null HashMap继承自AbstractMap类;而Hashtable继承自Di 阅读全文
posted @ 2019-11-20 11:00 小萌豚 阅读(110) 评论(0) 推荐(0) 编辑