美文网首页
Java 集合系列目录--基础篇一

Java 集合系列目录--基础篇一

作者: 夜风月圆 | 来源:发表于2018-07-05 15:47 被阅读0次

分享[Java 集合系列目录]
(https://www.cnblogs.com/skywang12345/p/3323085.html)

集合类 Key Value 说明
Hashtable 不允许为 null 不允许为 null 线程安全
ConcurrentHashMap 不允许为 null 不允许为 null 线程安全
TreeMap 不允许为 null 允许为 null 线程不安全
HashMap 允许为 null 允许为 null 线程不安全
LinkedHashMap 允许为 null 允许为 null 非线程安全,Key重复会覆盖、Value允许重复, 有序

相关文章

网友评论

      本文标题:Java 集合系列目录--基础篇一

      本文链接:https://www.haomeiwen.com/subject/quupuftx.html