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