本帖最后由 zc332750 于 2014-2-8 12:22 编辑
class AB{ public static void main(String [ ] args){
long i=0;try{i=Integer.parseInt(args[0]) ;
}catch(Exception e){ }
switch(i){
case 0: System.out.println("0"); case 1: System.out.println("1");
default : System.out.println("default");
}
}为什么编译不通过啊
|
|