How to iterate hashmap in reverse order in Java

后端 未结 12 1165
别那么骄傲
别那么骄傲 2020-12-30 01:08

I am trying this for some hour but not finding any best approach to achieve iteration of hashmap in reverse order, this is the hashmap I have.

      Map

        
12条回答
  •  轮回少年
    2020-12-30 02:13

    best approach to acheive iteration of hashmap in reverse order

    HashMap does not define any particular ordering of its element. Therefore the "reverse" order isn't defined either.

    For a TreeMap, you can use descendingMap().

提交回复
热议问题