java.util.Arrays
This class contains various methods for manipulating arrays (such as sorting and searching).
This class is a member of the Java Collections Framework.
Some of the Methods of Arrays
Arrays.parallelPrefix(double[], DoubleBinaryOperator): This method cumulates, in parallel, each element of the given array in place, using the supplied function.
Arrays.parallelPrefix(double[], int, int, DoubleBinaryOperator): This method performs parallelPrefix(double [], DoubleBinaryOperator)for the given subrange of the array.
Arrays.parallelPrefix(int[], IntBinaryOperator): This method cumulates, in parallel, each element of the given array in place, using the supplied function.
Arrays.parallelPrefix(int[], int, int, IntBinaryOperator): This method performs parallelPrefix(int [], IntBinaryOperator)for the given subrange of the array.
Arrays.parallelPrefix(long[], LongBinaryOperator): This method cumulates, in parallel, each element of the given array in place, using the supplied function.
Arrays.parallelPrefix(long[], int, int, LongBinaryOperator): This method performs parallelPrefix(long [], LongBinaryOperator)for the given subrange of the array.
Arrays.parallelSetAll(double[], IntToDoubleFunction): This method set all elements of the specified array, in parallel, using the provided generator function to compute each element.
Arrays.parallelSetAll(int[], IntUnaryOperator): This method sets all elements of the specified array, in parallel, using the provided generator function to compute each element.
Arrays.parallelSetAll(long[], IntToLongFunction): This method sets all elements of the specified array, in parallel, using the provided generator function to compute each element.
Arrays.parallelSort(byte[]): This method sorts the specified array into ascending numerical order.
Arrays.parallelSort(byte[], int, int): This method sorts the specified range of the array into ascending numerical order.
Arrays.parallelSort(char[]): This method sorts the specified array into ascending numerical order.
Arrays.parallelSort(char[], int, int): This method sorts the specified range of the array into ascending numerical order.
Arrays.parallelSort(double[]): This method sorts the specified array into ascending numerical order.
Arrays.parallelSort(double[], int, int): This method sorts the specified range of the array into ascending numerical order.
Arrays.parallelSort(float[]): This method sorts the specified array into ascending numerical order.
Arrays.parallelSort(float[], int, int): This method sorts the specified range of the array into ascending numerical order.
Arrays.parallelSort(int[]): This method sorts the specified array into ascending numerical order.
Arrays.parallelSort(int[], int, int): This method sorts the specified range of the array into ascending numerical order.
Arrays.parallelSort(long[]): This method sorts the specified array into ascending numerical order.
Some more Methods of Arrays class Part -I
Some more Methods of Arrays class Part -II
Some more Methods of Arrays class Part -III
Some more Methods of Arrays class Part -IV
Some more Methods of Arrays class Part -V
Some more Methods of Arrays class Part -VI
Some more Methods of Arrays class Part -VIII
Some more Methods of Arrays class Part -IX
No comments:
Post a Comment