当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.util.TreeMap.navigableKeySet()用法及代码示例



描述

这个navigableKeySet()方法用于返回此映射中包含的键的 NavigableSet 视图。集合的迭代器按升序返回键。该集合由Map支持,因此对Map的更改会反映在该集合中,反之亦然。

声明

以下是声明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.navigableKeySet() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。