主题:麻烦大家帮我看看,怎么得不到正确的结果
import java.io.*;
class ExceptionDemo1{
public void main(String args[]) throws IOException{
int d,a;
try{ //监控可能产生异常的语句块
d=0;
a=68/d;
System.out.println("本字符串将不显示");
}catch(ArithmeticException e){ //捕获divide-by-zero错误
System.out.println("产生用零除错误。");
}
System.out.println("在捕获语句后。");
}
} 怎么会得不到正确的结果 出来这样的异常提示 Exception in thread "main" java.lang.NoSuchMethodError: main
class ExceptionDemo1{
public void main(String args[]) throws IOException{
int d,a;
try{ //监控可能产生异常的语句块
d=0;
a=68/d;
System.out.println("本字符串将不显示");
}catch(ArithmeticException e){ //捕获divide-by-zero错误
System.out.println("产生用零除错误。");
}
System.out.println("在捕获语句后。");
}
} 怎么会得不到正确的结果 出来这样的异常提示 Exception in thread "main" java.lang.NoSuchMethodError: main