本文介绍了为什么在静态初始化块中不允许使用合格的静态最终变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
class Program {
static final int var;
static {
Program.var = 8; // Compilation error
}
public static void main(String[] args) {
int i;
i = Program.var;
System.out.println(Program.var);
}
}
案例2
class Program {
static final int var;
static {
var = 8; //OK
}
public static void main(String[] args) {
System.out.println(Program.var);
}
}
为什么案例1 会导致编译错误?
Why does Case 1 cause a compilation error?
推荐答案
JLS保留了答案(请注意粗体语句):
The JLS holds the answer (note the bold statement):
这意味着在分配静态最终变量时必须使用简单名称",即没有任何限定符的var名称.
This means that the 'simple name' must be used when assigning static final variables - i.e. the var name without any qualifiers.
这篇关于为什么在静态初始化块中不允许使用合格的静态最终变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!