java.util.TreeMap.ceilingEntry() java.util.TimeZone.useDaylightTime() java.util.TreeMap.ceilingKey() 描述 所述ceilingEntry(K key)方法用来返回与最小键大于或等于给定键,或零相关联的键值映射关系,如果不存在这样的密钥。 声明 以下是java.util.TreeMap.ceilingEntry()方法的声明。 public Map.Entry<K,V> ceilingEntry(K key) 参数 key - 这是匹配的关键。 返回值 方法调用返回密钥大于或等于key的条目,如果没有这样的密钥,则返回null。 异常 ClassCastException - 如果无法将指定的键与当前映射中的键进行比较,则抛出异常。 NullPointerException - 如果指定的键为null并且此映射使用自然排序,或者其比较器不允许空键,则抛出异常。 实例 以下示例显示了java.util.TreeMap.ceilingEntry()方法的用法。 package com.tutorialspoint; import java.util.*; public class TreeMapDemo { public static void main(String[] args) { // creating tree map NavigableMap<Integer, String> treemap = new TreeMap<Integer, String>(); // populating tree map treemap.put(2, "two"); treemap.put(1, "one"); treemap.put(3, "three"); treemap.put(6, "six"); treemap.put(5, "five"); System.out.println("Ceiling entry for 4: "+ treemap.ceilingEntry(4)); System.out.println("Ceiling entry for 5: "+ treemap.ceilingEntry(5)); } } 让我们编译并运行上面的程序,这将产生以下结果。 Ceiling entry for 4: 5=five Ceiling entry for 5: 5=five java.util.TimeZone.useDaylightTime() java.util.TreeMap.ceilingKey()