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


Java NavigableMap higherKey()用法及代码示例


NavigableMap接口的higherKey()方法用于返回严格大于给定键的最小键;如果没有这样的键,则返回null。

用法:

public K higherKey(K key)

参数:该方法将 key k作为参数。


返回值:此方法返回大于key的最小键;如果没有这样的键,则返回null。

异常:如果指定键为null且此映射使用自然顺序,或者其比较器不允许使用null键,则此方法将引发NullPointerException。

下面是说明higherKey()方法的示例:

示例1:

// Java program to demonstrate 
// higherKey() method 
// for <Integer, String> 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] args) throws Exception 
    { 
        try { 
  
            // Creating object of NavigableMap 
            NavigableMap<Integer, String> 
                navmap = new TreeMap<Integer, String>(); 
  
            // Populating the map 
            navmap.put(1, "One"); 
            navmap.put(2, "Two"); 
            navmap.put(3, "Three"); 
            navmap.put(4, "Four"); 
            navmap.put(5, "Five"); 
  
            // Pritnig the TreeMap 
            System.out.println("NavigableMap: " + navmap); 
  
            // Getting higher key value for 3 
            // using higherKey() method 
            int value = navmap.higherKey(3); 
  
            // Printing the value 
            System.out.println("The higherKey value "
                               + " for 3: " + value); 
        } 
  
        catch (NullPointerException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
NavigableMap: {1=One, 2=Two, 3=Three, 4=Four, 5=Five}
The higherKey value  for 3: 4

示例2:对于NullPointerException

// Java program to demonstrate 
// higherKey() method 
// for NullPointerException 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] args) throws Exception 
    { 
        try { 
  
            // Creating object of TreeMap<Integer, String> 
            NavigableMap<Integer, String> 
                navmap = new TreeMap<Integer, String>(); 
  
            // Populating tree map 
            navmap.put(1, "One"); 
            navmap.put(2, "Two"); 
            navmap.put(3, "Three"); 
            navmap.put(4, "Four"); 
            navmap.put(5, "Five"); 
  
            // Printnig the NavigableMap 
            System.out.println("TreeMap: " + navmap); 
  
            // Getting higher key value for null 
            // Using higherKey() method 
            System.out.println("Trying to get higherKey"
                               + " value for null"); 
  
            int value = navmap.higherKey(null); 
  
            // Printing the value 
            System.out.println("Value is: " + value); 
        } 
  
        catch (NullPointerException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
TreeMap: {1=One, 2=Two, 3=Three, 4=Four, 5=Five}
Trying to get higherKey value for null
Exception thrown : java.lang.NullPointerException


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 NavigableMap higherKey() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。