What are the differences between a HashMap and a Hashtable in Java?

后端 未结 30 2368
青春惊慌失措
青春惊慌失措 2020-11-21 13:30

What are the differences between a HashMap and a Hashtable in Java?

Which is more efficient for non-threaded applications?

30条回答
  •  被撕碎了的回忆
    2020-11-21 14:06

    In addition to what izb said, HashMap allows null values, whereas the Hashtable does not.

    Also note that Hashtable extends the Dictionary class, which as the Javadocs state, is obsolete and has been replaced by the Map interface.

提交回复
热议问题