欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HashTable、ConcurrentHashMap、TreeMap、HashMap关于键值的区别

程序员文章站 2022-07-04 12:34:47
集合类 key value super 说明 HashTable 不能为null 不能为null Dictionary 线程安全 ConcurrentHashMap 不能为null 不能为null AbstractMap 线程局部安全 TreeMap 不能为null 可以为null Abstract ......
集合类 key value super 说明
hashtable 不能为null 不能为null dictionary 线程安全
concurrenthashmap 不能为null 不能为null abstractmap 线程局部安全
treemap 不能为null 可以为null abstractmap 线程不安全
hashmap 可以为null 可以为null abstractmap 线程不安全