devxlogo

Comparison of Arrays

Comparison of Arrays

public class CompareArrays{    public static void main(String args[])    {        compareArrays();    }        private static void compareArrays()    {        int[] intArray1 = new int[5];        int[] intArray2 = new int[5];                //Changing the value so that the contents of the arrays will differ      //Comment this line and the result will be true        intArray1[0] = 15; //Initializing first element with a non-zero value        //Signature of Arrays.equals (int[] array1, int[] array2)        boolean isSame = java.util.Arrays.equals(intArray1, intArray2);            System.out.println("CompareArrays: isSame: " + isSame);    }}
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist