LinkedHashMap和HashTable

时间:2021-04-05 22:30:27

LinkedHashMap:

继承了HashMap;

LinkedHashMap和HashTable

LinkedHashMap和HashTable

其中,key不允许重复是Map接口就有的性质;

HashTable:

同步的,意味着是单线程,意味着线程安全的,但是速度慢,和List接口集合的子类vector有点相同命运;

key和value都不允许为空;

LinkedHashMap和HashTable

现在是高并发多线程的时代,线程不安全的,速度快,效率第一;

put方法时候,key和value有null的时候,运行时异常:nullpointexception;