当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java TreeMap floorEntry()用法及代码示例


java.util.TreeMap。floorEntry()方法用于返回与小于或等于给定键的最大键关联的键值映射,如果没有这样的键,则返回null。

用法:

tree_map.floorEntry(K key)

参数:此方法在映射时需要一个参数键进行匹配。

返回值:此方法返回最大 key 小于或等于key的条目,如果没有这样的 key ,则返回null。

异常:



  • ClassCastException:如果指定的键无法与映射中当前的键进行比较,则抛出此异常。
  • NullPointerException :如果指定键为null且此映射使用自然顺序,或者其比较器不允许使用null键,则抛出此异常。

范例1:有钥匙时

Java

// Java program to illustrate 
// TreeMap floorEntry() method 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty TreeMap 
        TreeMap<Integer, String> treemap 
            = new TreeMap<Integer, String>(); 
        
        // Mapping string values to int keys  
        treemap.put(20, "Twenty"); 
        treemap.put(10, "Ten"); 
        treemap.put(13, "Thirteen"); 
        treemap.put(60, "Sixty"); 
        treemap.put(50, "Fifty"); 
  
        System.out.println("The greatest key-value less than 18 is:"
                           + treemap.floorEntry(18)); 
    } 
}
输出
The greatest key-value less than 18 is:13=Thirteen

范例2:当没有这样的钥匙

Java

// Java program to illustrate 
// TreeMap floorEntry() method 
import java.util.TreeMap; 
  
public class GFG { 
    public static void main(String args[]) 
    { 
  
         // Creating an empty TreeMap 
        TreeMap<Integer, String> treemap 
            = new TreeMap<Integer, String>(); 
  
        // Mapping string values to int keys  
        treemap.put(10, "Akash"); 
        treemap.put(20, "Pratik"); 
        treemap.put(30, "Vaibhav"); 
        treemap.put(40, "Sagar"); 
        treemap.put(50, "Abhishek"); 
  
        // Printing floor entry 
        System.out.println("The greatest key-value less than 5 is:"
                           + treemap.floorEntry(5)); 
    } 
}
输出
The greatest key-value less than 5 is:null

注意读者!现在不要停止学习。以student-friendly的价格掌握Java和Java集合基础知识课程中所有重要的Java和集合概念,并做好行业准备。




相关用法


注:本文由纯净天空筛选整理自antminer大神的英文原创作品 TreeMap floorEntry() Method in Java With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。