class test
{ int i = 0;//这句话总提示分号问题。我用的eclipse编译的 if(i) { System.out.println("====================="); }
}
public class tmp
{ public static void main(String [] args) { new test().i = 1; }
还有一种
public class test{ static{ int i=1 ; if(i==1) println("============");
}
public static void main(String args[]){;}
}
main方法为空,Eclipse测试通过的
但好像用的不多,可以玩玩不用main方法运行类了。
class Test
{ int i =0; { if(i != 0) System.out.println("====================="); else System.out.println("****************"); }
}
public class Tmp
{ public static void main(String [] args) { Test test = new Test(); test.i = 1; }