Does Hashmap autosort?

前端 未结 3 1144
有刺的猬
有刺的猬 2021-02-15 14:33

This is my hashmap :

HashMap hashMapTest = new HashMap();

and I insert Date.getTime() into this

3条回答
  •  孤独总比滥情好
    2021-02-15 15:17

    Following are 4 common implementation of Map interface in Java,

    HashMap: No ordering & No preservation of insertion order on keys/values

    LinkedHashMap: Preserves the insertion order

    TreeMap: Ordered by the key

    HashTable: Unlike HashMap, it is synchronized

    Refer here for better understanding with examples.

提交回复
热议问题