자바 에 서 는 배열 을 가 변 적 이지 않 은 것 으로 설명 할 수 없습니다.
490 단어 정확 한 접근 수식 자 를 사용 하 더 라 도
public final int[] intTetst = {1,2};
public void testArrayValueFinal() {
System.err.println(intTetst[0]);
intTetst[0] = 2;
System.err.println(Arrays.toString(intTetst));
};
public static void main(String[] args) {
TestImplate testImplate = new TestImplate();
testImplate.testArrayValueFinal();
}