final表示最终,最后
可以修饰类 方法 变量
修饰类:那么这个类不可以被继承
修饰方法:不能修饰构造方法,其方法不能被重写
修饰变量:基本类型变量不能再被赋值改变,引用类型可以被赋值改变
具体原因参考:
Java中的基本数据类型和引用数据类型的区别 - MaskWolf - 博客园 (cnblogs.com)
package Experience;
public class Test {
public static void main(String[] args){
final int age=3;
System.out.println(age);
Person a1=new Person();
a1.age=100;
System.out.println(a1.age);
}
}