回 帖 发 新 帖 刷新版面

主题:麻烦大家帮我看看,怎么得不到正确的结果

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

回复列表 (共3个回复)

沙发

import java.io.IOException;

public class ExceptionDemo1{
    public static 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("在捕获语句后。");
    }
}

板凳

你看看 这样可以运行了

3 楼


谢了啊,可以运行了!

我来回复

您尚未登录,请登录后再回复。点此登录或注册