What\'s the difference between initialization within a static block:
static
public class staticTest { sta
static block can be used to initialize singleton instance, to prevent using synchronized getInstance() method.
getInstance()