Skip to content
This repository has been archived by the owner on Aug 1, 2020. It is now read-only.

Latest commit

 

History

History
33 lines (23 loc) · 572 Bytes

HashMap 和 HashTable 的区别.md

File metadata and controls

33 lines (23 loc) · 572 Bytes
title date tags
HashMap 与 HashTable 的区别
2018-08-27 10:20:46 -0700

1. 时间

HashTable产生于JDK 1.1,而HashMap产生于JDK 1.2。从时间的维度上来看,HashMap要比HashTable出现得晚一些。

2. 作者

以下是HashTable的作者:

以下代码及注释来自java.util.HashTable

* @author Arthur van Hoff
* @author Josh Bloch
* @author Neal Gafter

以下是HashMap的作者:

以下代码及注释来自java.util.HashMap

* @author Doug Lea
* @author Josh Bloch
* @author Arthur van Hoff
* @author Neal Gafter