I was wondering, what is there any different, on various ways to initialize static final variable?
private static final int i = 100;
or
private static final int i;
static {
i = 100;
}
Is there any different among the two?
|
I was wondering, what is there any different, on various ways to initialize static final variable?
or
Is there any different among the two? |
|||
|
|
|
If you're only setting variables, both forms are equivalent (and you should use the former as it is more readable and succinct). The
|
|||
|
|
|
The main reason for the static blocks are to be able to add some logic to the initialization that you cannot do in the 1 line initialization, like initializing an array or something. |
|||
|
|
|
Yes, by using the second way you are able to use a try...catch block and react to exceptions where as with the first way declared exceptions cannot be catched. There is also a difference when at class init the fields and die static block is executed but I have no details, see language specification on class instantiation for more information. Greetz, GHad |
|||
|
|
|
For a primitive variable, nothing. The difference can be if the initialization is not trivial, or the init method / constructor throws a checked exception - then you need a |
|||
|
|
|
They are the same except you can write multiple lines in the static code block. See java's official turorial. |
|||
|
|
|
You could also use Forward Reference initialization
} The key here is that we are getting value of 'j' from 'getValue' before 'j' have been declared. Static variables are initialized in order they appear. This will print correct value of '4' |
|||
|