Java TreeMap descendingMap() 方法



描述

Java TreeMap descendingMap() 方法用于返回此映射中包含的映射的反向视图。降序映射由此映射支持,因此对映射的更改会反映在降序映射中,反之亦然。

声明

以下是java.util.TreeMap.descendingMap() 方法的声明。

public NavigableMap<K,V> descendingMap()

参数

返回值

方法调用返回此映射的反向视图。

异常

从 Integer,Integer 对的 TreeMap 获取降序的可导航映射示例

以下示例演示了 Java TreeMap descendingMap() 方法的使用,以获取按降序排列的映射的可导航映射。我们创建了一个 Integer,Integer 对的 TreeMap 对象。然后向映射中添加一些条目,并使用 descendingMap() 获取映射的可导航映射,然后打印出来。

package com.tutorialspoint;

import java.util.NavigableMap;
import java.util.TreeMap;

public class TreeMapDemo {
   public static void main(String[] args) {
      
      // creating tree map 
      TreeMap<Integer, Integer> treemap = new TreeMap<>();

      // populating tree map
      treemap.put(2, 2);
      treemap.put(1, 1);
      treemap.put(3, 3);
      treemap.put(6, 6);
      treemap.put(5, 5);

      // putting values in navigable map
      NavigableMap nmap = treemap.descendingMap();

      System.out.println("Checking value");
      System.out.println("Navigable map values: "+nmap);
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Checking value
Navigable map values: {6=6, 5=5, 3=3, 2=2, 1=1}

从 Integer,String 对的 TreeMap 获取降序的可导航映射示例

以下示例演示了 Java TreeMap descendingMap() 方法的使用,以获取按降序排列的映射的可导航映射。我们创建了一个 Integer,String 对的 TreeMap 对象。然后向映射中添加一些条目,并使用 descendingMap() 获取映射的可导航映射,然后打印出来。

package com.tutorialspoint;

import java.util.NavigableMap;
import java.util.TreeMap;

public class TreeMapDemo {
   public static void main(String[] args) {
      
      // creating tree map 
      TreeMap<Integer, String> treemap = new TreeMap<>();

      // populating tree map
      treemap.put(2, "two");
      treemap.put(1, "one");
      treemap.put(3, "three");
      treemap.put(6, "six");
      treemap.put(5, "five");

      // putting values in navigable map
      NavigableMap nmap = treemap.descendingMap();

      System.out.println("Checking value");
      System.out.println("Navigable map values: "+nmap);
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Checking value
Navigable map values: {6=six, 5=five, 3=three, 2=two, 1=one}

从 Integer,Object 对的 TreeMap 获取降序的可导航映射示例

以下示例演示了 Java TreeMap descendingMap() 方法的使用,以获取按降序排列的映射的可导航映射。我们创建了一个 Integer,Student 对的 TreeMap 对象。然后向映射中添加一些条目,并使用 descendingMap() 获取映射的可导航映射,然后打印出来。

package com.tutorialspoint;

import java.util.NavigableMap;
import java.util.TreeMap;

public class TreeMapDemo {
   public static void main(String[] args) {
      
      // creating tree map 
      TreeMap<Integer, Student> treemap = new TreeMap<>();

      // populating tree map
      treemap.put(2, new Student(2, "Robert"));
      treemap.put(1, new Student(1, "Julie"));  
      treemap.put(3, new Student(3, "Adam"));
      treemap.put(6, new Student(6, "Julia"));
      treemap.put(5, new Student(5, "Tom"));

      // putting values in navigable map
      NavigableMap nmap = treemap.descendingMap();

      System.out.println("Checking value");
      System.out.println("Navigable map values: "+nmap);
   }    
}
class Student {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }
   @Override
   public boolean equals(Object obj) {
      if(obj == null) return false;
      Student s = (Student)obj;
      return this.rollNo == s.rollNo && this.name.equalsIgnoreCase(s.name);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Checking value
Navigable map values: {6=[ 6, Julia ], 5=[ 5, Tom ], 3=[ 3, Adam ], 2=[ 2, Robert ], 1=[ 1, Julie ]}
java_util_treemap.htm
广告