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


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


TreeMap類pollFirstEntry()方法

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

用法:

    public Map.Entry pollFirstEntry();

參數:

  • 它不接受任何參數。

返回值:

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

例:

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

import java.util.*;

public class PollFirstEntryOfTreeMap {
    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 pollFirstEntry() method is to
        // return and remove the key-value pairs
        // linked with the least key element value
        // i.e. "1"
        tm.pollFirstEntry();

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

輸出

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


相關用法


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