这是什么?
public class ABC {
public ABC() {
System.out.println("world");
}
static {
System.out.println("hello");
}
}
将打印:你好世界
我不太明白这一点,或者静态代码是一种什么样的方法。
这是什么?
public class ABC {
public ABC() {
System.out.println("world");
}
static {
System.out.println("hello");
}
}
将打印:你好世界
我不太明白这一点,或者静态代码是一种什么样的方法。