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

static final常量

时间:2015-08-15 00:08:49      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

package oo.day06;
//static final常量
public class StaticFinalDemo {
public static void main(String[] args) {
//Aoo.NUM = 250; //编译错误,常量不能修改
//System.out.println(Aoo.NUM);

//1.方法区中加载Boo.class
//2.将NUM1存储在方法区中
//3.去方法区中获取NUM1的值并输出
System.out.println(Boo.NUM1);

//编译器在编译时直接被替换为具体的值,效率高
//等价于System.out.println(6);
System.out.println(Boo.NUM2);
}
}
class Boo{
public static int NUM1 = 5; //静态变量
public static final int NUM2 = 6; //常量
}

 

 

 


class Aoo{
public static final int NUM = 5; //常量
//public static final double PI; //编译错误,必须声明同时初始化
}

 

static final常量

标签:

原文地址:http://www.cnblogs.com/xiaziteng/p/4731403.html

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