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 uncompress a file in the gzip format?
- How to make a gzip file in Java?
- How to use Java String.split method to split a string by dot?
- How to validate URL in Java?
- How to schedule a job in Java?
- How to return the content in the correct encoding from a servlet?
- What is the difference between JDK and JRE?
Most Viewed java Faqs
- How to read input from console (keyboard) in Java?
- How to use HttpURLConnection POST data to web server?
- How to add BASIC Authentication into HttpURLConnection?
- How to Retrieve Multiple Result Sets from a Stored Procedure in JDBC?
- What are class variables in Java?
- What are local variables in Java?
- How to Use Updatable ResultSet in JDBC?