A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 欧德林 中级黑马   /  2012-3-30 11:31  /  1626 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

程序捕获了第一个后就不会捕捉第二个了,最好分开try{}catch{}!
回复 使用道具 举报
我在学习异常的时候,看到这儿,如果我故意打错两个地方,为什么不提示两个呢》


class Demo
{       
        int div(int a,int b) throws ArithmeticException,ArrayIndexOutOfBoundsException //在功能上通过THROWS的关键字声明该功能可能出现的问题

        {
                int []arr=new int [a];
                System.out.println(arr[4]);
                        return a /b;
        }
}
class  ExceptionDemo
{
        public static void main(String[] args)
        {
                Demo d = new  Demo();
                try{
                int x =d.div(4,0);
                System.out.println("x="+x);
                }
                catch (ArithmeticException e)
                {
                        System.out.println(e.toString());
                        System.out.println("除零了");
                }
                catch  (ArrayIndexOutOfBoundsException e)
                {
                        System.out.println(e.toString());
                        System.out.println( "角标越界了");
                }
                System.out.println("over");
        }
}

4 个回复

倒序浏览
当执行到System.out.println(arr[4]);时
就已经抛出异常了,后面的代码不会被执行。
也就没有对除零异常的捕捉了。
回复 使用道具 举报
System.out.println(arr[4]);   这句抛出异常ArrayIndexOutOfBoundsException异常后,程序就跳出try语句,执行后面的catch语句了,因此只捕获到一个异常。
回复 使用道具 举报
当执行到System.out.println(arr[4]);时,程序抛出rrayIndexOutOfBoundsException,这个异常在ExceptionDemo运行时被try捕获,捕获后处理异常,程序暂停,不再
向下运行,所以看不到2个异常。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马