It has to do with how the compiler determines if a statement will be executed or not. It is defined in the JLS #16:
Each local variable and every blank final field must have a definitely assigned value when any access of its value occurs.
In your example, the compiler can determine that i is (or is not) definitely assigned at compile time because the expression in the if is a constant expression.
JLS #15.28 defines constant expressions:
A compile-time constant expression is an expression denoting a value of primitive type or a String that does not complete abruptly and is composed using only the following:
- Literals of primitive type [...]
- The relational operators <, <=, >, and >= [...]
Interestingly, this modified version of Test2 does not compile although Test2 does compile:
static class Test3 {
static final int i;
static {
int j = 3;
if (j > 2) {
i = 0;
}
}
}
The reason is that j > 2 is not a constant expression any longer. Making j final would make the class compile again.