A field declared with the static
modifier is called a static variable. A static variable comes into existence when the type in which it is declared is loaded, and ceases to exist when the type in which it is declared is unloaded.
The initial value of a static variable is the default value (§5.2) of the variable’s type.
For purposes of definite assignment checking, a static variable is considered initially assigned.