62,623
社区成员
发帖
与我相关
我的任务
分享public class ThreadTest{
public static void main(String[] args) {
}
public static int a = getValue();
public static int getValue() {
System.out.println("getValue()...");
return 10;
}
static {
System.out.println("static{}....");
}
}