![]() |
VOOZH | about |
The java.util.Vector.subList() is used to return a sublist of the existing Vector within a range mentioned in the parameter. The method takes in an upper limit and a lower limit and returns all the elements mentioned in the range. The lower limit is included if the element is present in the list and the upper limit is excluded. Basically, it takes the sublist greater than equal to the lower limit and strictly less than the upper element.
Syntax:
Vector.subList(int low_index, int up_index)
Parameters: The method accepts 2 mandatory parameters:
Return Value: The method returns a sublist of the Vector type mentioned within the given range of the parameters.
Example 1:
The Vector is: [5, 1, 50, 10, 20, 6, 20, 18, 9, 30] The resultant values within the sub list: [50, 10, 20]
Example 2:
The Vector is: [Welcome, To, Geek, For, Geeks] The resultant values within the sub list: [To, Geek, For, Geeks]