當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。