LinkedHashMap和HashTable

LinkedHashMap:

继承了HashMap;

LinkedHashMap和HashTable_第1张图片

LinkedHashMap和HashTable_第2张图片

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

 

 HashTable:

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

key和value都不允许为空;

LinkedHashMap和HashTable_第3张图片

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

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

转载于:https://www.cnblogs.com/wmqiang/p/10663785.html

你可能感兴趣的:(LinkedHashMap和HashTable)