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


Java TreeMap subMap()用法及代碼示例


在Java中,TreeMap class的subMap()方法用於返回由參數中指定範圍的鍵定義的映射的一部分或部分。在一個或另一個Map中所做的任何更改都將反映在另一個Map中的更改。

用法:

Tree_Map.subMap(K startKey, K endKey)

參數:該方法接受兩個 Key 類型的參數:

  • Map的起點或下端,包括要考慮的點。 (開始鍵)
  • Map的端點或較高端,不包括要考慮的點。(結束鍵)

返回類型:該方法返回另一個Map,其中包含指定範圍內的Map的一部分或部分。

異常:該方法拋出三種類型的異常:

  • ClassCastException:如果方法中提到的參數無法與此映射的鍵進行比較,則會拋出此異常。
  • NullPointerException:如果其中一個參數為 null 類型並且映射不接受任何 null 值,則會拋出此異常。
  • IllegalArgumentException:如果提到的參數超出範圍或低端大於高端,則拋出此異常。

Note: If startKey is equal to the endKey then a Null Map is returned.

示例 1:

Java


// Java Program to illustrate the subMap() method 
// of TreeMap class 
  
// Importing required classes 
import java.util.*; 
  
// Main class 
public class GFG { 
  
    // Main driver method 
    public static void main(String[] args) 
    { 
  
        // Creating an empty TreeMap by 
        // declaring object of integer, string pairs 
        TreeMap<Integer, String> tree_map 
            = new TreeMap<Integer, String>(); 
  
        // Mapping string values to int keys 
        // using put() method 
        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"); 
  
        // Printing the elements of TreeMap 
        System.out.println("The original map is: "
                           + tree_map); 
  
        // Displaying the submap 
        // using subMap() method 
        System.out.println("The subMap is "
                           + tree_map.subMap(15, 30)); 
    } 
}
輸出:
The original map is: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You}
The subMap is {15=4, 20=Geeks, 25=Welcomes}

示例 2:

Java


// Java Program to Illustrate the subMap() method 
  
// Importing required classes 
import java.util.*; 
  
// Main class 
public class GFG { 
  
    // Main driver method 
    public static void main(String[] args) 
    { 
        // Creating an empty TreeMap by 
        // declaring object of string, integer pairs 
        TreeMap<String, Integer> tree_map 
            = new TreeMap<String, Integer>(); 
  
        // Mapping int values to string keys 
        // using put() method 
        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); 
  
        // Printing the elements of TreeMap 
        System.out.println("The original map is: "
                           + tree_map); 
  
        // Displaying the subMap 
        // using subMap() method 
        System.out.println( 
            "The subMap is "
            + tree_map.subMap("Geeks", "Geeks")); 
    } 
}
輸出:
The original map is: {4=15, Geeks=20, Welcomes=25, You=30}
The subMap is {}


相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 TreeMap subMap() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。