标签:
class Test02 {
????public static void main(String args[]){
????????final int x;
????????x = 100;
//????????x = 200;
????????
????????System.out.println(x);
????}
}
/*
实验结果:
100
?
因为 x 被final修饰,所以是最终的
即只能赋值一次
x叫做最终变量
*/
标签:
原文地址:http://www.cnblogs.com/iucforever/p/4830693.html