📜  Java中的SortedMap lastKey()方法

📅  最后修改于: 2022-05-13 01:54:38.331000             🧑  作者: Mango

Java中的SortedMap lastKey()方法

Java中 SortedMap 接口的 lastKey() 方法用于返回当前地图中的最后一个或最大的键。

语法

K lastKey()

其中,K 是该 Set 维护的密钥类型。

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

返回值:返回当前地图中的最后一个或最大的键

异常:如果此地图为空,则抛出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 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

方案二

// 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 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: Java/util/SortedMap.html#lastKey()