What is LinkedHashMap?

后端 未结 6 1228
迷失自我
迷失自我 2021-02-02 00:02

Ok so i am new to these HashMaps but have some idea about LinkedLists and HashMaps. It would be great if you could give me some simple explanation regarding LinkedHashMap and a

6条回答
  •  北海茫月
    2021-02-02 00:36

    The biggest difference is LinkedHashMap is ordered. If you use an iterator the keys and values will be in the same order they were added to the map. HashMap has no guarantee of the order they are returned.

提交回复
热议问题