当前位置: 技术问答>java相关
谁能说一说HashMap和HashTable的区别,哪个效率高呢?
来源: 互联网 发布时间:2015-06-09
本文导语: 请教! | 接口一致,主要区别在于同步上 Hashmap算是轻量的,如无同步要求,选用Hashmap效率要高。 | Hash table based implementation of the Map interface. This implementation provides all...
请教!
|
接口一致,主要区别在于同步上
Hashmap算是轻量的,如无同步要求,选用Hashmap效率要高。
Hashmap算是轻量的,如无同步要求,选用Hashmap效率要高。
|
Hash table based implementation of the Map interface. This implementation provides all of the optional map operations, and permits null values and the null key. (The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls.) This class makes no guarantees as to the order of the map; in particular, it does not guarantee that the order will remain constant over time.
|
一个不能存空值,一可以
|
请问,wangwenyou(王文友)
1。什么是同步?
2。轻量和重量的区别?
3。为什么HashMap的效率高,高在哪里?
回答上来才是高手!
1。什么是同步?
2。轻量和重量的区别?
3。为什么HashMap的效率高,高在哪里?
回答上来才是高手!