Difference between HashMap, LinkedHashMap and TreeMap

后端 未结 17 2384
醉话见心
醉话见心 2020-11-22 01:01

What is the difference between HashMap, LinkedHashMap and TreeMap in Java? I don\'t see any difference in the output as all the three

17条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-22 01:23

    These are different implementations of the same interface. Each implementation has some advantages and some disadvantages (fast insert, slow search) or vice versa.

    For details look at the javadoc of TreeMap, HashMap, LinkedHashMap.

提交回复
热议问题