final修饰的引用变量其内容也可以变,你知道吗?
下文讲述final修饰的引用变量一旦初始化后,不能执行其它对象,但是其对象指向的内容可变,如下所示:例:
public class TestClass { public static void main(String[] args) { final TestClass2 testClass2 = new TestClass2(); System.out.println(++testClass2.i); System.out.println(testClass2.i); } } class TestClass2 { public int i =88; } -----------运行以上代码,输出------ 89 89
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。