For following code:
public class StaticFinal
{
private final static int i ;
public StaticFinal()
{}
}
I get compile time error:
StaticFinal.java:7: variable i might not have been initialized
{}
^
1 error
Which is in accordance with JLS8.3.1.2 , which says that:
It is a compile-time error if a blank final (§4.12.4) class variable is not definitely assigned (§16.8) by a static initializer (§8.7) of the class in which it is declared.
So , the above error is completely understood.
But now consider the following :
public class StaticFinal
{
private final static int i ;
public StaticFinal()throws InstantiationException
{
throw new InstantiationException("Can't instantiate"); // Don't let the constructor to complete.
}
}
Here, the constructor is never finished because InstantiationException
is thrown in the middle of constructor. And this code compiles fine!!
Why is it? Why this code is not showing compile time error about the non initialization of final
variable i
?
EDIT
I am compiling it using javac 1.6.0_25
on command prompt ( Not using any IDE )
If a final variable is not initialized during declaration, it must be initialized inside the class's constructor in which it is declared. Such a variable is also called a blank final variable. Any attempt to set a blank final variable outside the constructor will result in a compilation error.
Initialization of static variables happens in two consecutive stages: static and dynamic initialization. Static initialization happens first and usually at compile time. If possible, initial values for static variables are evaluated during compilation and burned into the data section of the executable.
A compile time error is an error that is detected by the compiler. Common causes for compile time errors include: Syntax errors such as missing semi-colon or use of a reserved keyword (such as 'class'). When you try and access a variable that is not in scope.
Declaring final variable without initialization If you declare a final variable later on you cannot modify or, assign values to it. Moreover, like instance variables, final variables will not be initialized with default values. Therefore, it is mandatory to initialize final variables once you declare them.
All these errors are detected by the compiler and thus are known as compile-time errors. Most frequent Compile-Time errors are: Missing Parenthesis (}) Printing the value of variable without declaring it
Your compiler may also warn you about using variables that haven't been initialized and other similar mistakes. Generally, you can set the warning level of your compiler--I like to keep it at its highest level so that my compiler warnings don't turn in to bugs in the running program ('runtime bugs').
A final variable has to be initialized on declaration or assigned to a value in the constructors body . If you don't initialize the final variable you get a compiler error. If you invoke the second constructor the variable never gets assigned to a value.
Even the first compiler error you get might be due to something several lines before the indicated warning. There are several types of compiler errors that are especially frustrating. The first is the case of an undeclared variable that you swear you declared. Often times, you can actually point out exactly where the variable was declared!
Interestingly enough, the code will compile whether or not the field is marked static
- and in IntelliJ, it will complain (but compile) with the static field, and not say a word with the non-static field.
You're right in that JLS §8.1.3.2 has certain rules regarding [static] final fields. However, there's a few other rules around final fields that play a large role here, coming from the Java Language Specification §4.12.4 - which specify the compilation semantics of a final
field.
But before we can get into that ball of wax, we need to determine what happens when we see throws
- which is given to us by §14.18, emphasis mine:
A throw statement causes an exception (§11) to be thrown. The result is an immediate transfer of control (§11.3) that may exit multiple statements and multiple constructor, instance initializer, static initializer and field initializer evaluations, and method invocations until a try statement (§14.20) is found that catches the thrown value. If no such try statement is found, then execution of the thread (§17) that executed the throw is terminated (§11.3) after invocation of the uncaughtException method for the thread group to which the thread belongs.
In layman's terms - during run-time, if we encounter a throws
statement, it can interrupt the execution of the constructor (formally, "completes abruptly"), causing the object to not be constructed, or constructed in an incomplete state. This could be a security hole, depending on the platform and partial completeness of the constructor.
What the JVM expects, given by §4.5, is that a field with ACC_FINAL
set never has its value set after construction of the object:
Declared final; never directly assigned to after object construction (JLS §17.5).
So, we're in a bit of a pickle - we expect behavior of this during run-time, but not during compile-time. And why does IntelliJ raise a mild fuss when I have static
in that field, but not when I don't?
First, back to throws
- there's only a compile-time error with that statement if one of these three pieces aren't satisfied:
try
to catch
the exception, and you're catch
ing it with the right type, orSo compiling a constructor with a throws
is legitimate. It just so happens that, at run-time, it will always complete abruptly.
If a throw statement is contained in a constructor declaration, but its value is not caught by some try statement that contains it, then the class instance creation expression that invoked the constructor will complete abruptly because of the throw (§15.9.4).
Now, onto that blank final
field. There's a curious piece to them - their assignment only matters after the end of the constructor, emphasis theirs.
A blank final instance variable must be definitely assigned (§16.9) at the end of every constructor (§8.8) of the class in which it is declared; otherwise a compile-time error occurs.
What if we never reach the end of the constructor?
First program: Normal instantiation of a static final
field, decompiled:
// class version 51.0 (51)
// access flags 0x21
public class com/stackoverflow/sandbox/DecompileThis {
// compiled from: DecompileThis.java
// access flags 0x1A
private final static I i = 10
// access flags 0x1
public <init>()V
L0
LINENUMBER 7 L0
ALOAD 0
INVOKESPECIAL java/lang/Object.<init> ()V
L1
LINENUMBER 9 L1
RETURN // <- Pay close attention here.
L2
LOCALVARIABLE this Lcom/stackoverflow/sandbox/DecompileThis; L0 L2 0
MAXSTACK = 1
MAXLOCALS = 1
}
Observe that we actually call a RETURN
instruction after successfully calling our <init>
. Makes sense, and is perfectly legal.
Second program: Throws in constructor and blank static final
field, decompiled:
// class version 51.0 (51)
// access flags 0x21
public class com/stackoverflow/sandbox/DecompileThis {
// compiled from: DecompileThis.java
// access flags 0x1A
private final static I i
// access flags 0x1
public <init>()V throws java/lang/InstantiationException
L0
LINENUMBER 7 L0
ALOAD 0
INVOKESPECIAL java/lang/Object.<init> ()V
L1
LINENUMBER 8 L1
NEW java/lang/InstantiationException
DUP
LDC "Nothin' doin'."
INVOKESPECIAL java/lang/InstantiationException.<init> (Ljava/lang/String;)V
ATHROW // <-- Eeek, where'd my RETURN instruction go?!
L2
LOCALVARIABLE this Lcom/stackoverflow/sandbox/DecompileThis; L0 L2 0
MAXSTACK = 3
MAXLOCALS = 1
}
The rules of ATHROW
indicate that the reference is popped, and if there's an exception handler out there, that will contain the address of the instruction on handling the exception. Otherwise, it's removed from the stack.
We never explicitly return, thus implying that we never complete construction of the object. So, the object can be considered to be in a wonky half-initialized state, all the while obeying compile-time rules - that is, all statements are reachable.
In the case of a static field, since that's not considered an instance variable, but a class variable, it does seem wrong that this sort of invocation is permissible. It may be worth filing a bug against.
Thinking back on it, it does make some sense in context, since the following declaration in Java is legal, and method bodies are congruent to constructor bodies:
public boolean trueOrDie(int val) {
if(val > 0) {
return true;
} else {
throw new IllegalStateException("Non-natural number!?");
}
}
As I'm understanding here we are all developers, so I believe we won't find the real response among us...this thing has something to do with compiler internals...and I think is a bug, or at least an unwanted behaviour.
Excluding Eclipse, which has some kind of incremental compiler (and therefore is able to immediately detect the problem), the command line javac performs a one-shot compilation. Now, the first snippet
public class StaticFinal {
private final static int i ;
}
which is basically the same as having an empty constructor (as in the first example), is throwing the compile-time error, and this is fine because is respecting the specs.
In the second snippet, I think there's a bug in the compiler; it seems the compiler makes some decisions based on what the constructor is doing. This is more evident if you try to compile this one,
public class StaticFinal
{
private final static int i ;
public StaticFinal()
{
throw new RuntimeException("Can't instantiate");
}
}
This is more bizarre than your example because the unchecked exception is not declared in the method signature and will be (at least this is what I thought before reading this post) discovered only at run time.
Observing the behavior I could say (but is wrong according the specs) that.
For static final variables, the compiler tries to see if they are explicitly initialized, or initialized in a static intializer block, but, for some strange reason, it looks for something in the constructor too:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With