Arrays.parallelSetAll(long[], IntToLongFunction) in Java

Arrays.parallelSetAll(long[], IntToLongFunction): This method is available in java.util.Arrays class of Java.

Syntax:

void java.util.Arrays.parallelSetAll(long[] array, IntToLongFunction generator)

This method takes two arguments one of type long array and the other of type IntToLongFunction as its parameters. This method sets all elements of the specified array, in parallel, using the provided generator function to compute each element.

Note: If the generator function throws an exception, an unchecked exception is thrown from parallelSetAll and the array is left in an indeterminate state.

Parameters: Two parameters are required for this method.

array: array to be initialized.

generator: a function accepting an index and producing the desired value for that position.

Throws:

NullPointerException - if the generator is null.

Approach 1: When no exceptions

Java

import java.util.Arrays;
import java.util.function.IntToLongFunction;

public class ArraysparallelSetAlllong {
    public static void main(String[] args) {

        long array[] = { 12, 34, 56, 78 };

        IntToLongFunction generator = intVal -> {
            long doubleVal = intVal;
            return doubleVal;
        };

        Arrays.parallelSetAll(array, generator);

        System.out.println(Arrays.toString(array));
    }
}

Output:

[0, 1, 2, 3]


Approach 2: NullPointerException 

Java

import java.util.Arrays;
import java.util.function.IntToLongFunction;

public class ArraysparallelSetAlllong {
    public static void main(String[] args) {

        long array[] = { 12, 34, 56, 78 };

        IntToLongFunction generator = null;

        Arrays.parallelSetAll(array, generator);

        System.out.println(Arrays.toString(array));
    }
}

Output:

Exception in thread "main" java.lang.NullPointerException at java.base/java.util.Objects.requireNonNull(Objects.java:208) at java.base/java.util.Arrays.parallelSetAll(Arrays.java:5199)


No comments:

Post a Comment