static{...}
)class Test{
static {
//Code goes here
}
}
public class Demo {
static int a;
static int b;
static {
a = 10;
b = 20;
}
public static void main(String args[]) {
System.out.println("Value of a = " + a);
System.out.println("Value of b = " + b);
}
}
Value of a = 10
Value of b = 20
Static Variable in Java: What is Static Block & Method [Example]
자매품 : 인스턴스 블록({}
)