Home »
Java »
Java Programs
Java program to get the subList from the Vector collection
Given a Vector collection, we have to get the subList from it.
Submitted by Nidhi, on May 26, 2022
Problem statement
In this program, we will create a Vector collection with integer elements. Then we will get the subList from the Vector collection using the subList() method.
Source Code
The source code to get the subList from the Vector collection is given below. The given program is compiled and executed successfully.
// Java program to get the subList from
// the Vector collection
import java.util.*;
public class Main {
public static void main(String[] args) {
Vector < Integer > vec = new Vector < Integer > ();
vec.add(10);
vec.add(20);
vec.add(30);
vec.add(20);
vec.add(12);
vec.add(40);
vec.add(60);
List < Integer > subList = vec.subList(2, 5);
System.out.println("Vector collection: " + vec);
System.out.println("Sub List of Vector collection: " + subList);
}
}
Output
Vector collection: [10, 20, 30, 20, 12, 40, 60]
Sub List of Vector collection: [30, 20, 12]
Explanation
In the above program, we imported the "java.util.*" package to use the Vector class. Here, we created a public class Main.
The Main class contains a main() method. The main() method is the entry point for the program. And, created a Vector collection vec with integer elements. Then we used the subList() method to get the sublist from the Vector Collection and printed the result.
Java Vector Class Programs »