Home »
Java »
Java Programs
Java program to traverse the Vector collection using spliterator() method
Given a Vector collection, we have to traverse its elements using spliterator() method.
Submitted by Nidhi, on May 26, 2022
Problem statement
In this program, we will create a Vector collection with integer elements. Then we will traverse elements of Vector collection using the spliterator() method.
Source Code
The source code to traverse the Vector collection using Spliterator is given below. The given program is compiled and executed successfully.
// Java program to traverse the Vector collection
// using Spliterator
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);
Spliterator < Integer > items = vec.spliterator();
System.out.println("Vector Elements:");
items.forEachRemaining((n) -> System.out.println(n));
}
}
Output
Vector Elements:
10
20
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 spliterator() method to traverse and print elements of the Vector collection.
Java Vector Class Programs »