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");
}
}
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать