Java中的java.util.TreeMap.subMap(K startKey,K endKey)方法用於返回由參數中指定鍵範圍定義的Map的部分或部分。在一個或另一個Map中進行的任何更改都將反映在另一個Map中的更改。
用法:
Tree_Map.subMap(K startKey, K endKey)
參數:該方法采用Key類型的兩個參數:
- startKey:這是指Map的起點或下端,其中包括要考慮的點。
- endKey:這是指Map的端點或上端,不包括要考慮的點。
注意:如果startKey等於endKey,則返回Null映射。
返回值:該方法返回另一個Map,其中包含指定範圍內的Map的部分或部分。
異常:該方法引發三種類型的異常:
- ClassCastException:如果方法中提到的參數無法與此映射的鍵進行比較,則拋出此異常。
- NullPointerException :如果兩個參數中的任何一個為null類型,並且映射不接受任何null值,則拋出此異常。
- IllegalArgumentException:如果提到的參數超出範圍或低端大於高端,則拋出此異常。
以下程序說明了java.util.TreeMap.subMap()方法的用法:
示例1:
// Java code to illustrate the subMap() 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 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 code to illustrate the subMap() 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 subMap
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 {}
相關用法
- Java SortedMap subMap()用法及代碼示例
- Java TreeMap get()用法及代碼示例
- Java TreeMap put()用法及代碼示例
- Java TreeMap clear()用法及代碼示例
- Java TreeMap values()用法及代碼示例
- Java TreeMap lastKey()用法及代碼示例
- Java TreeMap keySet()用法及代碼示例
- Java TreeMap headMap()用法及代碼示例
- Java TreeMap entrySet()用法及代碼示例
- Java TreeMap remove()用法及代碼示例
- Java TreeMap putAll()用法及代碼示例
- Java TreeMap containsKey()用法及代碼示例
- Java TreeMap containsValue()用法及代碼示例
- Java TreeMap clone()用法及代碼示例
- Java TreeMap size()用法及代碼示例
注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 TreeMap subMap() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。