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


Java SortedMap firstKey()用法及代码示例


Java中SortedMap接口的firstKey()方法用于返回此映射中当前的第一个或最低键。

用法

K firstKey()

其中,K是此Set维护的 key 的类型。


参数:此函数不接受任何参数。

返回值:它返回第一个打印的最低键,当前在此Map中

异常:如果此映射为空,则抛出NoSuchElementException。

以下示例程序旨在说明上述方法:

程序1

// A Java program to demonstrate 
// working of SortedMap 
import java.util.*; 
  
public class Main { 
    public static void main(String[] args) 
    { 
        // Create a TreeMap of SortedMap 
        SortedMap<Integer, String> mp = new TreeMap<>(); 
  
        // Adding Element to SortedSet 
        mp.put(1, "One"); 
        mp.put(5, "Five"); 
        mp.put(2, "Two"); 
        mp.put(3, "Three"); 
        mp.put(9, "Nine"); 
  
        // Returning the first key element 
        // from the map 
        System.out.print("First Key in the map : "
                         + mp.firstKey()); 
    } 
}
输出:
First Key in the map : 1

程序2

// A Java program to demonstrate 
// working of SortedSet 
import java.util.*; 
  
public class Main { 
    public static void main(String[] args) 
    { 
        // Create a TreeSet and inserting elements 
        SortedMap<String, String> mp = new TreeMap<>(); 
  
        // Adding Element to SortedSet 
        mp.put("One", "Geeks"); 
        mp.put("Two", "For"); 
        mp.put("Three", "Geeks"); 
        mp.put("Four", "Code"); 
        mp.put("Five", "It"); 
  
        // Returning the first key 
        // from the map 
        System.out.print("First Key in the map is : "
                         + mp.firstKey()); 
    } 
}
输出:
First Key in the map is : Five

参考: https://docs.oracle.com/javase/10/docs/api/java/util/SortedMap.html#firstKey()



相关用法


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