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);
}
}
Visit the DevX Tip Bank