码迷,mamicode.com
首页 > 其他好文 > 详细

并不是static final 修饰的变量都是编译期常量

时间:2019-06-03 09:19:35      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:string   ring   oid   数据类型   输出   code   test   sys   new   

见代码

public class Test {
    public static void main(String[] args){
        // 情况一  基本数据类型
        //System.out.println(Outer.Inner.n);
        // 输出结果 : 10

        //情况二 
        //Outer outer = Outer.Inner.outer;
        // 输出结果 : 静态内部类
    
        //情况三
        System.out.println(Outer.Inner.str);
        // 输出结果: 静态内部类  abc

        //情况四
        System.out.println(Outer.Inner.str01);
        // 输出结果: abc
    }    
}
class Outer{
    static class Inner{
        public static final String str = new String("abc");
        public static final String str01 = "abc";
        public static  final Outer outer  = new Outer();
        public static final int n = 10;
        static {
            System.out.println("静态内部类");
        }
    }
}                

String 是一个比较特殊的类(str01:  static final 修饰的变量不可变 , “abc”这个字符串也不可变)

 

并不是static final 修饰的变量都是编译期常量

标签:string   ring   oid   数据类型   输出   code   test   sys   new   

原文地址:https://www.cnblogs.com/DDiamondd/p/10965708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!