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


Java NavigableMap pollLastEntry()用法及代碼示例


Java中NavigableMap接口的pollLastEntry()方法用於刪除並返回與此映射中最大鍵關聯的鍵-值映射;如果映射為空,則為null。

用法

Map.Entry< K, V > pollLastEntry()

其中,K是此映射維護的鍵的類型,V是映射到鍵的值的類型。


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

返回值:返回與此映射中最大鍵關聯的鍵-值映射;如果映射為空,則返回null。

以下程序說明了Java中的pollLastEntry()方法:

程序1:當鍵為整數時。

// Java code to demonstrate the working of 
// pollLastEntry() method 
  
import java.io.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Declaring the NavigableMap of Integer and String 
        NavigableMap<Integer, String> nmmp = new TreeMap<>(); 
  
        // assigning the values in the NavigableMap 
        // using put() 
        nmmp.put(2, "two"); 
        nmmp.put(7, "seven"); 
        nmmp.put(3, "three"); 
  
        System.out.println("Removed key-value associated with"+ 
                     " greatest key : " + nmmp.pollLastEntry()); 
    } 
}
輸出:
Removed key-value associated with greatest key : 7=seven

程序2:當鍵是字符串時。

// Java code to demonstrate the working of 
// pollLastEntry() method 
  
import java.io.*; 
import java.util.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Declaring the NavigableMap of Integer and String 
        NavigableMap<String, String> tmmp = new TreeMap<>(); 
  
        // assigning the values in the NavigableMap 
        // using put() 
        tmmp.put("one", "two"); 
        tmmp.put("six", "seven"); 
        tmmp.put("two", "three"); 
  
        System.out.println("Removed key-value associated with"+ 
                  " greatest the key : " + tmmp.pollLastEntry()); 
    } 
}
輸出:
Removed key-value associated with greatest the key : two=three

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



相關用法


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