What\'s the difference between initialization within a static block:
static
public class staticTest { sta
Sometimes you want to do more than just assign values to static variables. Since you cannot put arbitrary statements in the class body, you could use a static initializer block.