Why the fully qualified name of a static final variable is not allowed in static initialization block?
Let's start with the following example:
public class Program {
static final int var;
static {
Program.var = 8; // Compilation error
}
public static void main(String[] args) {
System.out.println(Program.var);
}
}
And,
public class Program {
static final int var;
static {
var = 8; //OK
}
public static void main(String[] args) {
System.out.println(Program.var);
}
}
Why the fully qualified name of the static final variable is not allowed in static initialization block?
The rules governing definite assignment in Chapter 16. Definite Assignment:
Similarly, every blank
finalvariable must be assigned at most once; it must be definitely unassigned when an assignment to it occurs. Such an assignment is defined to occur if and only if either the simple name of the variable, or its simple name qualified bythis, occurs on the left hand side of an assignment operator. A Java compiler must carry out a specific conservative flow analysis to make sure that, for every assignment to a blankfinalvariable, the variable is definitely unassigned before the assignment; otherwise a compile-time error must occur
According to the above rules governing definite assignment, we can have the following code:
public class Program {
static final int var1;
final int var2;
static {
var1 = 8; //OK
}
{
this.var2=10; //OK
}
public static void main(String[] args) {
.....
}
}
Further Reading
Chapter 16. Definite Assignment
Most Recent java Faqs
- How to avoid an java.util.ConcurrentModificationException with ArrayList?
- How to convert a given array to a list in Java?
- How to make Java objects eligible for garbage collection?
- What are local variables in Java?
- What are instance variables in Java?
- How many backslashes?
- What are class variables in Java?
Most Viewed java Faqs
- How to use HttpURLConnection POST data to web server?(24745)
- What is runtime polymorphism in Java?(18324)
- How to add BASIC Authentication into HttpURLConnection?(16081)
- What is String literal pool?(14754)
- Can the run() method be called directly to start a thread?(13989)
- What does Class.forname method do?(10593)
- Can transient variables be declared as 'final' or 'static'?(10445)