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
相关用法
- Java TreeMap ceilingEntry()、ceilingKey()用法及代码示例
- Java TreeMap ceilingKey()用法及代码示例
- Java TreeMap clear()用法及代码示例
- Java TreeMap comparator()用法及代码示例
- Java TreeMap containsValue()用法及代码示例
- Java TreeMap containsKey()用法及代码示例
- Java TreeMap clone()用法及代码示例
- Java TreeMap putAll()用法及代码示例
- Java TreeMap lastEntry()用法及代码示例
- Java TreeMap remove()用法及代码示例
- Java TreeMap floorEntry()用法及代码示例
- Java TreeMap firstEntry()用法及代码示例
- Java TreeMap get()用法及代码示例
- Java TreeMap descendingKeySet()用法及代码示例
- Java TreeMap higherEntry()用法及代码示例
- Java TreeMap put()用法及代码示例
- Java TreeMap lastKey()用法及代码示例
- Java TreeMap size()用法及代码示例
- Java TreeMap navigableKeySet()用法及代码示例
- Java TreeMap tailMap()用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java TreeMap ceilingEntry() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。