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


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


TreeMap類ceilingEntry()方法

  • ceilingEntry() 方法可在java.util包。
  • ceilingEntry() 方法用於返回與大於或等於給定鍵元素 (ele) 的最小鍵元素鏈接的鍵值對。
  • ceilingEntry() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • ceilingEntry() 方法可能會在 od 返回適當的鍵值對時拋出異常。
    • ClassCastException:當給定的參數不兼容時,可能會拋出此異常。
    • NullPointerException :當給定參數為空時可能會拋出此異常存在。

用法:

    public Map.Entry ceilingEntry(Key ele);

參數:

  • Key ele– 表示要在此 TreeMap 中檢查的關鍵元素 (ele)。

返回值:

該方法的返回類型是Map.Entry,它返回關聯的鍵值對,其中最小鍵值元素大於或等於給定的參數(ele),否則返回 null。

例:

// Java program to demonstrate the example 
// of Map.Entry ceilingEntry(Key ele) method of TreeMap 

import java.util.*;

public class CeilingEntryOfTreeMap {
    public static void main(String[] args) {
        // Instantiates a TreeMap object
        NavigableMap < Integer, String > tree_map = new TreeMap < Integer, String > ();

        // By using put() method is to add
        // key-value pairs in a TreeMap
        tree_map.put(10, "C");
        tree_map.put(20, "C++");
        tree_map.put(50, "JAVA");
        tree_map.put(40, "PHP");
        tree_map.put(30, "SFDC");

        // By using ceilingEntry(35) method is
        // to return the key-value pairs mapped with
        // the least key value element greater than or
        // equal to the given key value element i.e.
        // 40 = PHP

        System.out.print("tree_map.ceilingEntry(35):");
        System.out.println(tree_map.ceilingEntry(35));
    }
}

輸出

tree_map.ceilingEntry(35):40=PHP


相關用法


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