/* 常量就是常量,在编译期就必须确定其值,不应该在运行期更改,否则程序的可读性会非常差 */
public class proposal_2 {
interface Const{
public static final int RAND_CONST=new Random().nextInt();
}
public static void main(String[] args) {
System.out.println("常量会变哦:"+Const.RAND_CONST);
}
}
/*
* 注意:
* 务必让常量的值在运行期保持不变
* */