What is LinkedHashMap?

后端 未结 6 1236
迷失自我
迷失自我 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条回答
  •  梦毁少年i
    2021-02-02 00:57

    LinkedHashMap keys are similar to ArrayLists or arrays in the way they are stored in the order that they are inserted. Normal HashMaps are sorted by their hash code.

    k = key v = value They can be any type.

提交回复
热议问题