- Hashtable 是个古老的 Map 实现类,线程安全,不建议使用
- 与 HashMap 不同,Hashtable 不允许使用 null 作为 key 和 value
- 与HashMap 相同,Hashtable 也不能保证其中 Key-Value 对的顺序
- Hashtable 判断两个 key 相等(equals 和 hashCode)、两个 value 相等的标准(equals),与 HashMap 一致
- Properties 作为 Hashtable 的一个子类,常用来处理属性文件(JDBC、IO流)
- Properties 的特点是键和值均为 String 类型
时间: 2024-10-14 12:11:22