java check if 2 arrays are equal code example
Example: example to check two integer array are equal in java?
import java.util.Arrays;
public class JavaArrayConceptsConitnue
{
public static void main(String[] args)
{
int[] x = {10,12,20,30,25};
int[] subx = new int[]{10,12,20,30,26};
if(Arrays.equals(x, subx) == true)
{
System.out.println("Both the arrays are equal");
}
else
{
System.out.println("Arrays are not equal");
}
}
}