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


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


TreeMap類pollLastEntry()方法

  • pollLastEntry() 方法可在java.util包。
  • pollLastEntry() 方法用於返回然後刪除與此 TreeMap 中存在的最大鍵元素值鏈接的條目(鍵值對)。
  • pollLastEntry() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • pollLastEntry() 方法在返回最後一個條目時不拋出異常。

用法:

    public Map.Entry pollLastEntry();

參數:

  • 它不接受任何參數。

返回值:

該方法的返回類型是Map.Entry,它在存在時檢索具有最大鍵元素值的條目,否則返回 null。

例:

// Java program to demonstrate the example 
// of Map.Entry pollLastEntry () 
// method of TreeMap 

import java.util.*;

public class PollLastEntryOfTreeMap {
    public static void main(String[] args) {
        // Instantiates TreeMap
        TreeMap < Integer, String > tm = new TreeMap < Integer, String > ();

        // By using put() method is
        // to put the key-value pairs in
        // treemap tm
        tm.put(1, "C");
        tm.put(4, "C++");
        tm.put(3, "Java");
        tm.put(2, "Php");

        // Display TreeMap tm
        System.out.println("tm:" + tm);

        // By using pollLastEntry() method is to
        // return and remove the key-value pairs
        // linked with the largest key element value
        // i.e. "4"
        tm.pollLastEntry();

        // Display updated TreeMap tm
        System.out.println("tm.pollLastEntry():" + tm);
    }
}

輸出

tm:{1=C, 2=Php, 3=Java, 4=C++}
tm.pollLastEntry():{1=C, 2=Php, 3=Java}


相關用法


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