What is this?
public class ABC {
public ABC() {
System.out.println("world");
}
static {
System.out.println("hello");
}
}
Will print: hello world
I don't really understand this, or what kind of method that static code is.