DONE排除异常,有错?
package examWithinAWeek;
public class Exception {
public static void main(String args[]){
try{
System.out.println(1/0);
}
catch(Exception ex){
System.out.println("Error!");
}
}
}
这个程序排除此异常9/0,有问题不?谢谢~~
[此贴子已经被作者于2007-11-17 22:19:08编辑过]