ceilingKey()
方法ceilingKey()方法在java.util包中可用。
ceilingKey()方法用于返回大于或等于给定键元素(ele)的下键元素,否则返回null。
ceilingKey()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。
ceilingKey()方法在返回适当的键值时可能会引发异常。
ClassCastException:如果给定参数不兼容,则可能引发此异常。
NullPointerException:当给定参数为null时,可能引发此异常。
语法:
public Key ceilingKey(Key ele);
参数:
Key ele –表示要在此TreeMap中检查的关键元素(ele)。
返回值:
方法的返回类型为Key,它返回大于或等于给定键元素(ele)的最小键值元素,否则返回null。
示例
//Java程序演示示例 //Map的Key ceilingKey(Key ele)方法的介绍 import java.util.*; public class CeilingKeyOfTreeMap { public static void main(String[] args) { //实例化TreeMap对象 NavigableMap < Integer, String > tree_map = new TreeMap < Integer, String > (); //通过使用put()方法是添加 //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"); //通过使用ceilingKey(35)方法是 //的键值 //最小键值元素大于或 //等于给定的键值元素,即40- System.out.print("tree_map.ceilingKey(35): "); System.out.println(tree_map.ceilingKey(35)); } }
输出结果
tree_map.ceilingKey(35): 40