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


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


Java中的java.util.TreeMap.tailMap(from_Key)方法用于获取其参数大于等于参数from_key的Map的部分或视图。在一个Map中进行的任何更改都将反映在另一个Map中的更改。

用法:

Tree_Map.tailMap(from_Key)

参数:该方法在TreeMap中采用一个Key类型的参数from_key,表示设置为比返回其映射更大的下点的键。


返回值:该方法返回键大于from_Key的映射部分。

异常:该方法引发三种类型的异常:

  • ClassCastException:如果方法中提到的参数无法与此映射的键进行比较,则抛出此异常。
  • NullPointerException :如果两个参数中的任何一个为null类型并且映射不接受任何null值,则抛出此异常。
  • IllegalArgumentException:如果上述参数超出范围或下限大于上限,则抛出此异常。

以下程序说明了java.util.TreeMap.tailMap()方法的用法:
程序1:

// Java code to illustrate the tailMap() method 
import java.util.*; 
  
public class Tree_Map_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty TreeMap 
        TreeMap<Integer, String> tree_map = new TreeMap<Integer, String>(); 
  
        // Mapping string values to int keys 
        tree_map.put(10, "Geeks"); 
        tree_map.put(15, "4"); 
        tree_map.put(20, "Geeks"); 
        tree_map.put(25, "Welcomes"); 
        tree_map.put(30, "You"); 
  
        // Displaying the TreeMap 
        System.out.println("The original map is:"
                           + tree_map); 
  
        // Displaying the submap 
        System.out.println("The tailMap is " + tree_map.tailMap(15)); 
    } 
}
输出:
The original map is:{10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You}
The tailMap is {15=4, 20=Geeks, 25=Welcomes, 30=You}

程序2:

// Java code to illustrate the tailMap() method 
import java.util.*; 
  
public class Tree_Map_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty TreeMap 
        TreeMap<String, Integer> tree_map = new TreeMap<String, Integer>(); 
  
        // Mapping int values to string keys 
        tree_map.put("Geeks", 10); 
        tree_map.put("4", 15); 
        tree_map.put("Geeks", 20); 
        tree_map.put("Welcomes", 25); 
        tree_map.put("You", 30); 
  
        // Displaying the TreeMap 
        System.out.println("The original map is:"
                           + tree_map); 
  
        // Displaying the tailMap 
        System.out.println("The tailMap is " + tree_map.tailMap("Geeks")); 
    } 
}
输出:
The original map is:{4=15, Geeks=20, Welcomes=25, You=30}
The tailMap is {Geeks=20, Welcomes=25, You=30}

程序3:默认情况下,tail_Map中包含from_key。如果需要忽略或排除它,则可以将另一个参数与from_key一起传递,这是错误的。

// Java code to illustrate the tailMap() method 
import java.util.*; 
  
public class Tree_Map_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty TreeMap 
        TreeMap<String, Integer> tree_map = new TreeMap<String, Integer>(); 
  
        // Mapping int values to string keys 
        tree_map.put("Geeks", 10); 
        tree_map.put("4", 15); 
        tree_map.put("Geeks", 20); 
        tree_map.put("Welcomes", 25); 
        tree_map.put("You", 30); 
  
        // Displaying the TreeMap 
        System.out.println("The original map is:"
                           + tree_map); 
  
        // Displaying the tailMap 
        System.out.println("The tailMap is " + tree_map.tailMap("Geeks", false)); 
    } 
}
输出:
The original map is:{4=15, Geeks=20, Welcomes=25, You=30}
The tailMap is {Welcomes=25, You=30}


相关用法


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