![]() |
VOOZH | about |
In Java, subMap() method of TreeMap class is used to return the part or portion of the map defined by the specified range of keys in the parameter. Any changes made in one or the other map will reflect the change in the other map.
Syntax:
Tree_Map.subMap(K startKey, K endKey)
Parameters: The method takes two parameters of Key type:
Return Type: The method returns another map containing the part or portion of the map within the specified range.
Exceptions: The method throws three types of exception:
Note: If startKey is equal to the endKey then a Null Map is returned.
Example 1:
The original map is: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You}
The subMap is {15=4, 20=Geeks, 25=Welcomes}Example 2:
The original map is: {4=15, Geeks=20, Welcomes=25, You=30}
The subMap is {}