The Arrays class in java.util package is a part of the Java Collection Framework. This class provides static methods to dynamically create and access Java arrays. It consists of only static methods and the methods of Object class. The methods of this class can be used by the class name itself.
Class Hierarchy:
java.lang.Object ↳ java.util.Arrays
Class Declaration:
public class Arrays
extends Object
Syntax to use Array:
Arrays.<function name>;
Need for the Java-Arrays Class:
There are often times when loops are used to do some tasks on an array like:
- Fill an array with a particular value.
- Sort an Arrays.
- Search in an Arrays.
- And many more.
Arrays class provides several static methods that can be used to perform these tasks directly without the use of loops.
Methods in Java Array:
The Arrays class of the java.util package contains several static methods that can be used to fill, sort, search, etc in arrays. These are:
- static <T> List<T> asList(T… a): This method returns a fixed-size list backed by the specified Arrays.
// Java program to demonstrate// Arrays.asList() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To convert the elements as ListSystem.out.println("Integer Array as List: "+ Arrays.asList(intArr));}}chevron_rightfilter_noneOutput:
Integer Array as List: [[I@232204a1]
- static int binarySearch(elementToBeSearched): These methods searches for the specified element in the array with the help of Binary Search algorithm.
// Java program to demonstrate// Arrays.binarySearch() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};Arrays.sort(intArr);intintKey =22;System.out.println(intKey+" found at index = "+ Arrays.binarySearch(intArr, intKey));}}chevron_rightfilter_noneOutput:
22 found at index = 3
- static <T> int binarySearch(T[] a, int fromIndex, int toIndex, T key, Comparator<T> c): This method searches a range of the specified array for the specified object using the binary search algorithm.
// Java program to demonstrate// Arrays.binarySearch() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};Arrays.sort(intArr);intintKey =22;System.out.println(intKey+" found at index = "+ Arrays.binarySearch(intArr,1,3, intKey));}}chevron_rightfilter_noneOutput:
22 found at index = -4
- compare(array 1, array 2): This method compares two arrays passed as parameters lexicographically.
// Java program to demonstrate// Arrays.compare() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// Get the second ArrayintintArr1[] = {10,15,22};// To compare both arraysSystem.out.println("Integer Arrays on comparison: "+ Arrays.compare(intArr, intArr1));}}chevron_rightfilter_noneOutput:
Integer Arrays on comparison: 1
- compareUnsigned(array 1, array 2): This method compares two arrays lexicographically, numerically treating elements as unsigned.
// Java program to demonstrate// Arrays.compareUnsigned() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArraysintintArr[] = {10,20,15,22,35};// Get the second ArraysintintArr1[] = {10,15,22};// To compare both arraysSystem.out.println("Integer Arrays on comparison: "+ Arrays.compareUnsigned(intArr, intArr1));}}chevron_rightfilter_noneOutput:
Integer Arrays on comparison: 1
- copyOf(originalArray, newLength): This method copies the specified array, truncating or padding with the default value (if necessary) so the copy has the specified length.
// Java program to demonstrate// Arrays.copyOf() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To print the elements in one lineSystem.out.println("Integer Array: "+ Arrays.toString(intArr));System.out.println("\nNew Arrays by copyOf:\n");System.out.println("Integer Array: "+ Arrays.toString(Arrays.copyOf(intArr,10)));}}chevron_rightfilter_noneOutput:
Integer Array: [10, 20, 15, 22, 35] New Arrays by copyOf: Integer Array: [10, 20, 15, 22, 35, 0, 0, 0, 0, 0]
- copyOfRange(originalArray, fromIndex, endIndex): This method copies the specified range of the specified array into a new Arrays.
// Java program to demonstrate// Arrays.copyOfRange() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To print the elements in one lineSystem.out.println("Integer Array: "+ Arrays.toString(intArr));System.out.println("\nNew Arrays by copyOfRange:\n");// To copy the array into an array of new lengthSystem.out.println("Integer Array: "+ Arrays.toString(Arrays.copyOfRange(intArr,1,3)));}}chevron_rightfilter_noneOutput:
Integer Array: [10, 20, 15, 22, 35] New Arrays by copyOfRange: Integer Array: [20, 15]
- static boolean deepEquals(Object[] a1, Object[] a2): This method returns true if the two specified arrays are deeply equal to one another.
// Java program to demonstrate// Arrays.deepEquals() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArraysintintArr[][] = { {10,20,15,22,35} };// Get the second ArraysintintArr1[][] = { {10,15,22} };// To compare both arraysSystem.out.println("Integer Arrays on comparison: "+ Arrays.deepEquals(intArr, intArr1));}}chevron_rightfilter_noneOutput:
Integer Arrays on comparison: false
- static int deepHashCode(Object[] a): This method returns a hash code based on the “deep contents” of the specified Arrays.
// Java program to demonstrate// Arrays.deepHashCode() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[][] = { {10,20,15,22,35} };// To get the dep hashCode of the arraysSystem.out.println("Integer Array: "+ Arrays.deepHashCode(intArr));}}chevron_rightfilter_noneOutput:
Integer Array: 38475344
- static String deepToString(Object[] a): This method returns a string representation of the “deep contents” of the specified Arrays.
// Java program to demonstrate// Arrays.deepToString() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[][] = { {10,20,15,22,35} };// To get the deep String of the arraysSystem.out.println("Integer Array: "+ Arrays.deepToString(intArr));}}chevron_rightfilter_noneOutput:
Integer Array: [[10, 20, 15, 22, 35]]
- equals(array1, array2): This method checks if both the arrays are equal or not.
// Java program to demonstrate// Arrays.equals() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArraysintintArr[] = {10,20,15,22,35};// Get the second ArraysintintArr1[] = {10,15,22};// To compare both arraysSystem.out.println("Integer Arrays on comparison: "+ Arrays.equals(intArr, intArr1));}}chevron_rightfilter_noneOutput:
Integer Arrays on comparison: false
- fill(originalArray, fillValue): This method assigns this fillValue to each index of this Arrays.
// Java program to demonstrate// Arrays.fill() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArraysintintArr[] = {10,20,15,22,35};intintKey =22;Arrays.fill(intArr, intKey);// To fill the arraysSystem.out.println("Integer Array on filling: "+ Arrays.toString(intArr));}}chevron_rightfilter_noneOutput:
Integer Array on filling: [22, 22, 22, 22, 22]
- hashCode(originalArray): This method returns an integer hashCode of this array instance.
// Java program to demonstrate// Arrays.hashCode() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To get the hashCode of the arraysSystem.out.println("Integer Array: "+ Arrays.hashCode(intArr));}}chevron_rightfilter_noneOutput:
Integer Array: 38475313
- mismatch(array1, array2): This method finds and returns the index of the first unmatched element between the two specified arrays.
// Java program to demonstrate// Arrays.mismatch() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArraysintintArr[] = {10,20,15,22,35};// Get the second ArraysintintArr1[] = {10,15,22};// To compare both arraysSystem.out.println("The element mismatched at index: "+ Arrays.mismatch(intArr, intArr1));}}chevron_rightfilter_noneOutput:
The element mismatched at index: 1
- parallelPrefix(originalArray, fromIndex, endIndex, functionalOperator): This method performs parallelPrefix for the given range of the array with the specified functional operator.
- parallelPrefix(originalArray, operator): This method performs parallelPrefix for complete array with the specified functional operator.
- parallelSetAll(originalArray, functionalGenerator): This method set all the elements of this array in parallel, using the provided generator function.
- parallelSort(originalArray): This method sorts the specified array using parallel sort.
// Java program to demonstrate// Arrays.parallelSort() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To sort the array using parallelSortArrays.parallelSort(intArr);System.out.println("Integer Array: "+ Arrays.toString(intArr));}}chevron_rightfilter_noneOutput:
Integer Array: [10, 15, 20, 22, 35]
- setAll(originalArray, functionalGenerator): This method sets all the element of the specified array using the generator function provided.
- sort(originalArray): This method sorts the complete array in ascending order.
// Java program to demonstrate// Arrays.sort() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To sort the array using normal sort-Arrays.sort(intArr);System.out.println("Integer Array: "+ Arrays.toString(intArr));}}chevron_rightfilter_noneOutput:
Integer Array: [10, 15, 20, 22, 35]
- sort(originalArray, fromIndex, endIndex): This method sorts the specified range of array in ascending order.
// Java program to demonstrate// Arrays.sort() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To sort the array using normal sortArrays.sort(intArr,1,3);System.out.println("Integer Array: "+ Arrays.toString(intArr));}}chevron_rightfilter_noneOutput:
Integer Array: [10, 15, 20, 22, 35]
- static <T> void sort(T[] a, int fromIndex, int toIndex, Comparator< super T> c): This method sorts the specified range of the specified array of objects according to the order induced by the specified comparator.
// Java program to demonstrate working of Comparator// interfaceimportjava.util.*;importjava.lang.*;importjava.io.*;// A class to represent a student.classStudent {introllno;String name, address;// ConstructorpublicStudent(introllno, String name,String address){this.rollno = rollno;this.name = name;this.address = address;}// Used to print student details in main()publicString toString(){returnthis.rollno +" "+this.name +" "+this.address;}}classSortbyrollimplementsComparator<Student> {// Used for sorting in ascending order of// roll numberpublicintcompare(Student a, Student b){returna.rollno - b.rollno;}}// Driver classclassMain {publicstaticvoidmain(String[] args){Student[] arr = {newStudent(111,"bbbb","london"),newStudent(131,"aaaa","nyc"),newStudent(121,"cccc","jaipur") };System.out.println("Unsorted");for(inti =0; i < arr.length; i++)System.out.println(arr[i]);Arrays.sort(arr,1,2,newSortbyroll());System.out.println("\nSorted by rollno");for(inti =0; i < arr.length; i++)System.out.println(arr[i]);}}chevron_rightfilter_noneOutput:
Unsorted 111 bbbb london 131 aaaa nyc 121 cccc jaipur Sorted by rollno 111 bbbb london 131 aaaa nyc 121 cccc jaipur
- static <T> void sort(T[] a, Comparator< super T> c): This method sorts the specified array of objects according to the order induced by the specified comparator.
// Java program to demonstrate working of Comparator// interfaceimportjava.util.*;importjava.lang.*;importjava.io.*;// A class to represent a student.classStudent {introllno;String name, address;// ConstructorpublicStudent(introllno, String name,String address){this.rollno = rollno;this.name = name;this.address = address;}// Used to print student details in main()publicString toString(){returnthis.rollno +" "+this.name +" "+this.address;}}classSortbyrollimplementsComparator<Student> {// Used for sorting in ascending order of// roll numberpublicintcompare(Student a, Student b){returna.rollno - b.rollno;}}// Driver classclassMain {publicstaticvoidmain(String[] args){Student[] arr = {newStudent(111,"bbbb","london"),newStudent(131,"aaaa","nyc"),newStudent(121,"cccc","jaipur") };System.out.println("Unsorted");for(inti =0; i < arr.length; i++)System.out.println(arr[i]);Arrays.sort(arr,newSortbyroll());System.out.println("\nSorted by rollno");for(inti =0; i < arr.length; i++)System.out.println(arr[i]);}}chevron_rightfilter_noneOutput:
Unsorted 111 bbbb london 131 aaaa nyc 121 cccc jaipur Sorted by rollno 111 bbbb london 121 cccc jaipur 131 aaaa nyc
- spliterator(originalArray): This method returns a Spliterator covering all of the specified Arrays.
// Java program to demonstrate// Arrays.spliterator() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To sort the array using normal sortSystem.out.println("Integer Array: "+ Arrays.spliterator(intArr));}}chevron_rightfilter_noneOutput:
Integer Array: java.util.Spliterators$IntArraySpliterator@232204a1
- spliterator(originalArray, fromIndex, endIndex): This method returns a Spliterator of the type of the array covering the specified range of the specified Arrays.
// Java program to demonstrate// Arrays.spliterator() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To sort the array using normal sortSystem.out.println("Integer Array: "+ Arrays.spliterator(intArr,1,3));}}chevron_rightfilter_noneOutput:
Integer Array: java.util.Spliterators$IntArraySpliterator@232204a1
- stream(originalArray): This method returns a sequential stream with the specified array as its source.
// Java program to demonstrate// Arrays.stream() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To get the Stream from the arraySystem.out.println("Integer Array: "+ Arrays.stream(intArr));}}chevron_rightfilter_noneOutput:
Integer Array: java.util.stream.IntPipeline$Head@4aa298b7
- toString(originalArray): This method returns a String representation of the contents of this Arrays. The string representation consists of a list of the array’s elements, enclosed in square brackets (“[]”). Adjacent elements are separated by the characters a comma followed by a space. Elements are converted to strings as by String.valueOf() function.
// Java program to demonstrate// Arrays.toString() methodimportjava.util.Arrays;publicclassMain {publicstaticvoidmain(String[] args){// Get the ArrayintintArr[] = {10,20,15,22,35};// To print the elements in one lineSystem.out.println("Integer Array: "+ Arrays.toString(intArr));}}chevron_rightfilter_noneOutput:
Integer Array: [10, 20, 15, 22, 35]
This article is contributed by Rishabh Mahrsee. If you like GeeksforGeeks and would like to contribute, you can also write an article and mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.

