How to iterate hashmap in reverse order in Java

后端 未结 12 1192
别那么骄傲
别那么骄傲 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 01:52

        TreeMap map = new TreeMap();
        map.put(1, "abc1");
        map.put(2, "abc2");
        map.put(3, "abc3");
        NavigableMap nmap = map.descendingMap();
        for (NavigableMap.Entry entry : nmap.entrySet()) {
            System.out.println("Key : " + entry.getKey() + " Value : " + entry.getValue());
        }
    

    An implementation of NPE idea.

提交回复
热议问题