Java的TreeMap tailMap() 方法
在Java中的Java .util.TreeMap.tailMap(from_Key)方法被用来获得其键比等于在参数中from_key更大的地图的一部分,或者图。在一张地图中所做的任何更改都将反映另一张地图中的更改。
句法:
Tree_Map.tailMap(from_Key)
参数:该方法采用TreeMap中Key类型的一个参数from_key,引用设置为比其要返回的映射大的下点的key。
返回值:该方法返回键大于 from_Key 的映射部分。
异常:该方法抛出三种类型的异常:
- ClassCastException :如果方法中提到的参数无法与此映射的键进行比较,则抛出此异常。
- NullPointerException :如果任一参数为空类型且映射不接受任何空值,则会引发此异常。
- IllegalArgumentException :如果提到的参数超出范围或下限大于上限,则抛出此异常。
下面的程序说明了Java.util.TreeMap.tailMap() 方法的工作:
方案一:
// 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 tree_map = new TreeMap();
// 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}
方案二:
// 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 tree_map = new TreeMap();
// 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:默认情况下,from_key 包含在tail_Map 中。如果需要忽略或排除它,则可以与from_key一起传递另一个参数,即false 。
// 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 tree_map = new TreeMap();
// 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}