Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
除了 hashtable 处理 NPE 的方式之外,如果 hashmap 是使用 Collections 框架同步的,那么它在行为上与 hashtable 有何不同,如果有的话?
有一些不是本质的区别,例如 Hashtable 有返回 Enumeration 的 elements() 方法。但最重要的是,一些旧类依赖于 Hashtable,例如 javax.naming.InitialContext,您不能用 Collection.synchronizedMap 返回的 Map 替换它。