class Test {
public static void main(String[] args){
function(1);
System.out.println("程序结束");
}
public static void function(int num){
if(num==0){
throw new Exception();
}else{
System.out.println("没有异常");
}
}
}
结果为什么编译失败?
thorw new Exception() 这句的问题吗?还是需要在方法上声明?还是怎样? |
|