Mam taki program:
class Test {
final int x;
{
printX();
}
Test() {
System.out.println("const called");
}
void printX() {
System.out.println("Here x is " + x);
}
public static void main(String[] args) {
Test t = new Test();
}
}
Jeśli spróbuję go wykonać, otrzymuję błąd kompilatora, ponieważ: variable x might not have been initialized
na podstawie domyślnych wartości java powinienem uzyskać prawidłowe dane wyjściowe?
"Here x is 0".
Czy końcowe zmienne będą miały wartości domyślne?
jeśli zmienię swój kod w ten sposób,
class Test {
final int x;
{
printX();
x = 7;
printX();
}
Test() {
System.out.println("const called");
}
void printX() {
System.out.println("Here x is " + x);
}
public static void main(String[] args) {
Test t = new Test();
}
}
Otrzymuję dane wyjściowe jako:
Here x is 0
Here x is 7
const called
Czy ktoś może wyjaśnić to zachowanie ...