當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java SortedMap lastKey()用法及代碼示例


Java中SortedMap接口的lastKey()方法用於返回此映射中當前的最後一個或最大鍵。

用法

K lastKey()

其中,K是此Set維護的 key 的類型。


參數:此函數不接受任何參數。

返回值:返回當前Map中的最後一個或最大的鍵

異常:如果此映射為空,則拋出NoSuchElementException。

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

程序1

// 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<Integer, String> mp = new TreeMap<>(); 
  
        // Adding Element to SortedSet 
        mp.put(1, "One"); 
        mp.put(2, "Two"); 
        mp.put(3, "Three"); 
        mp.put(4, "Four"); 
        mp.put(5, "Five"); 
  
        // Returning the last key from the map 
        System.out.print("Last Key in the map is : "
                         + mp.lastKey()); 
    } 
}
輸出:
Last Key in the map is : 5

程序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 last key from the map 
        System.out.print("Last Key in the map is : "
                         + mp.lastKey()); 
    } 
}
輸出:
Last Key in the map is : Two

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



相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 SortedMap lastKey() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。