Java program to print HashSet elements using spliterator() method

Given a HashSet, we have to print its elements using spliterator() method.
Submitted by Nidhi, on May 11, 2022

Problem Solution:

In this program, we will create a set using the HashSet collection to store integer elements. Then we will print set elements using the spliterator() method.

Program/Source Code:

The source code to print HashSet elements using the spliterator() method is given below. The given program is compiled and executed successfully.

import java.util.*;

class Main {
  public static void main(String[] args) {
    HashSet < Integer > nums = new HashSet();

    nums.add(1);
    nums.add(2);
    nums.add(3);
    nums.add(4);
    nums.add(5);
    nums.add(6);

    Spliterator < Integer > splt = nums.spliterator();

    System.out.println("Set elements:");
    splt.forEachRemaining((n) -> System.out.println(n));
  }
}

Output:

Set elements:
1
2
3
4
5
6

Explanation:

In the above program, we imported the "java.util.*" package to use the HashSet collection. Here, we created a public class Main that contains a main() method.

The main() method is the entry point for the program. Here, we created a set to store integer data elements using HashSet collection. Then we printed HashSet elements using the spliterator() method.

Java HashSet Programs »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.