java.util.TreeMap.navigableKeySet() java.util.TreeMap.lowerKey() java.util.TreeMap.pollFirstEntry() 描述 所述navigableKeySet()方法用来返回包含在此映射的键的NavigableSet视图。set的迭代器按升序返回键。该集由地图支持,因此对地图的更改将反映在集中,反之亦然。 声明 以下是java.util.TreeMap.navigableKeySet()方法的声明。 public NavigableSet<K> navigableKeySet() 参数 NA 返回值 方法调用返回此映射中键的可导航设置视图。 异常 NA 实例 以下示例显示了java.util.TreeMap.navigableKeySet()的用法 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"); // getting navigable key set System.out.println("Checking key set value"); System.out.println("Value is: "+ treemap.navigableKeySet()); } } 让我们编译并运行上面的程序,这将产生以下结果。 Checking key set value Value is: [1, 2, 3, 5, 6] java.util.TreeMap.lowerKey() java.util.TreeMap.pollFirstEntry()