public class Test {
    static int[] arrInstance = new int[100];
    public static void main(String[] args) {
        byte[] arrLocal = new byte[100];
        for (int i = 0; i < 100; i++)
            if (arrInstance[i] != arrLocal[i]) {
                throw new IllegalStateException("error");
            }
    }
}
    
Login in to like
Login in to comment