Java TreeMap descendingMap()方法
java.util.TreeMap.descendingMap() 以降序返回指定的键值对。
1 语法
public NavigableMap<K,V> descendingMap()
2 参数
无
3 返回值
以降序返回指定的键值对。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeMap.descendingMap()方法的例子
*/
import java.util.*;
public class Demo {
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}
热门文章
优秀文章