Java Arrays - spliterator() Method
The java.util.Arrays.spliterator() method returns a Spliterator.OfInt covering all of the specified array.
Syntax
public static Spliterator.OfInt spliterator(int[] array)
Parameters
array |
Specify the array, assumed to be unmodified during use. |
Return Value
Returns a spliterator for the array elements.
Exception
NA.
Example:
In the example below, the java.util.Arrays.spliterator() method returns an Integer spliterator with all elements of the specified array.
import java.util.*; public class MyClass { public static void main(String[] args) { //creating an int array int MyArr[] = {10, 2, -3, 35, 56}; //creating spliterator object on Array Spliterator<Integer> splitr = Arrays.spliterator(MyArr); //printing estimateSize of the Array System.out.println("Estimated size: " + splitr.estimateSize()); //display content of the Array using //tryAdvance method System.out.print("The Array contains: "); splitr.forEachRemaining((n) -> System.out.print(n + " ")); } }
The output of the above code will be:
Estimated size: 5 The Array contains: 10 2 -3 35 56
❮ Java.util - Arrays