Os campos estáticos são inicializados durante a inicialização "fase" de do carregamento da classe (carregamento, vinculação e inicialização) que inclui inicializadores estáticos e inicializações de seus campos estáticos. Os inicializadores estáticos são executados em uma ordem textual conforme definido na classe.
Considere o exemplo:
public class Test {
static String sayHello() {
return a;
}
static String b = sayHello(); // a static method is called to assign value to b.
// but its a has not been initialized yet.
static String a = "hello";
static String c = sayHello(); // assignes "hello" to variable c
public static void main(String[] arg) throws Throwable {
System.out.println(Test.b); // prints null
System.out.println(Test.sayHello()); // prints "hello"
}
}
O Test.b é impresso null
porque, quando o sayHello
foi chamado no escopo estático, a variável estática a
não foi inicializada.