Class Definition Java Tutorial

class StaticInit
{
    public static int x;
    static
    {
        x = 32;
    }
}