I was going through an exercise in Head First Java. It has the following code :
static {
System.out.println("Super constructor block");
}
i dont get the static modifier that is before the curly braces. What is it called? I know static variables etc. I tried searching online but couldn't get an answer. Thanks.