final无法阻止数组值变换

final是引用不可变,值还是可以改变的。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class App {

public static final String[] array = {"1", "2"};

public static void main(String[] args) throws Exception {

for (int i = 0; i < array.length; i ++) {
System.out.print(array[i] + " ");
}
System.out.print("\n");
array[0] = "3";
for (int i = 0; i < array.length; i ++) {
System.out.print(array[i] + " ");
}

}
}
// 输出结果
// 1 2
// 3 2
作者

Etsu

发布于

2023-03-06

更新于

2023-03-06

许可协议

评论