difference between linkedhashmap, hashmap, map, hashtable

前端 未结 3 2005
借酒劲吻你
借酒劲吻你 2021-02-04 22:55

I am preparing for software interviews and i am stuck with a question for days now.

I have not been able to figure out the difference between linkedhashmap, map, hashtab

3条回答
  •  孤独总比滥情好
    2021-02-04 23:09

    All classes implement the Map interface and offer mostly the same functionality. The most important difference is the order in which iteration through the entries will happen:

    HashMap makes absolutely no guarantees about the iteration order. It can (and will) even change completely when new elements are added. TreeMap will iterate according to the "natural ordering" of the keys according to their compareTo() method (or an externally supplied Comparator). Additionally, it implements the SortedMap interface, which contains methods that depend on this sort order. LinkedHashMap will iterate in the order in which the entries were put into the map "Hashtable" is the generic name for hash-based maps. In the context of the Java API, Hashtable is an obsolete class from the days of Java 1.1 before the collections framework existed. It should not be used anymore, because its API is cluttered with obsolete methods that duplicate functionality, and its methods are synchronized (which can decrease performance and is generally useless). Use ConcurrrentHashMap instead of Hashtable.

提交回复
热议问题