final关键字理解及内存图
程序员文章站
2024-03-23 15:46:16
...
public class Demo {
//常量,如果是单个单词,全部大写,如果是多个单词,全部大写,且单词与单词之间用下划线隔开.
//快速将字母全部变为大写:ctrl+shift+x
//快速将字母全部变为小写:ctrl+shift+y
private final int NUM1 = 1;
private final int MAX_NUM2 = 2;
public static void main(String[] args) {
// 1:修饰类,类不能被继承
// 2:修饰变量
// 基本类型,是值不能被改变
// 引用类型,是地址值不能被改变,对象中的属性可以改变
// 3:修饰方法,方法不能被重写
final int num = 1;//由final修饰后,num就变成了一个常量
// 4:常量:在程序的执行过程中,它的值不能被改变!!
num = 2;
System.out.println(num);
final MyStudent stu = new MyStudent("Summer",18);
//(重点)如果使用final来修饰引用数据类型,那么这个引用就不能指向其他的对象了!!!
//(重点)并不会影响对象内部的值的内容改变!!!
stu = new MyStudent("Gerry", 19);
stu.setAge(11);
System.out.println(stu.getAge());
//(重点)输出结果 Age = 11
}
}
上一篇: Ubuntu下Ruby的安装
下一篇: Ruby 语法.整理