package javaapplication1;
import java.util.Arrays;
public class JavaApplication1 {
public static void main(String[] args) {
short[] shortArr1 = new short[]{2, 13, 97, 101, 321, 78};
short[] shortArr2 = new short[]{2, 13, 97, 101, 321, 78};
boolean b = Arrays.equals(shortArr1,shortArr2);
System.out.println(b);
}
}
/*
run:
true
*/