java.util.TreeMap.descendingMap() 方法
描述
descendingMap() 方法用于返回此映射中包含的映射的倒序视图。 下降映射由该映射支持,因此对映射的更改会反映在下降映射中,反之亦然。
声明
以下是 java.util.TreeMap.descendingMap() 方法的声明。
public NavigableMap<K,V> descendingMap()
参数
NA
返回值
该方法调用返回此映射的倒序视图。
异常
NA
示例
下面的例子展示了 java.util.TreeMap.descendingMap() 方法的使用。
package com.tutorialspoint; import java.util.*; public class TreeMapDemo { public static void main(String[] args) { // creating tree map TreeMap<Integer, String> treemap = new TreeMap<Integer, String>(); // 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}