Javafinal变量
class Test02 {
public static void main(String args[]){
final int x;
x = 100;
// x = 200;
System.out.println(x);
}
}
/*
实验结果:
100
因为 x 被final修饰,所以是最终的
即只能赋值一次
x叫做最终变量
*/
class Test02 {
public static void main(String args[]){
final int x;
x = 100;
// x = 200;
System.out.println(x);
}
}
/*
实验结果:
100
因为 x 被final修饰,所以是最终的
即只能赋值一次
x叫做最终变量
*/