文章列表
public class TestStatic {
static int i;
static{
System.out.println("Whether the first load...");
}
public TestStatic() {
// TODO Auto-generated constructor stub
System.out.println("non-arg...");
i=4;
}
public TestStatic(int j){
System.out.printl ...