Java

static block

  package staticblock; public class StaticBlock {     static double b;     static String s;     static{ […]

Scroll to Top