not sure if I should search or sort my hashmap

后端 未结 6 1608
北恋
北恋 2021-01-23 16:28

Hi I have a list of people with their ages, I need to find those who are more than 30 years old, is there any possibility to search in a hashmap ? (please note that I may need

6条回答
  •  粉色の甜心
    2021-01-23 17:10

    HashMapiteration order is 'not predictable' (that's to say that if you sort, and than insert keys, in a determinate order when you later try to iterate the keys the order is not the same).

    Use a LinkedHashMap instead.

提交回复
热议问题