码迷,mamicode.com
首页 > 其他好文 > 详细

多异常处理

时间:2018-07-21 14:59:21      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:nbsp   index   数组   static   throw   ati   异常   div   style   

class Demo
{
    public int div(int a,int b) throws ArithmeticException,ArrayIndexOutOfBoundsException
    {
        int[] arr=new int[a];
        System.out.println(arr[4]);
        return a/b;
    }
}
public class ExceptionDemo 
{
    public static void main(String[] args)//throws Exception 
    {    
        Demo d=new Demo();
        try
        {
            int x=d.div(4,0);
            System.out.println("x="+x);
        }
        catch (ArithmeticException e)
        {
            System.out.println(e);
            System.out.println("被零除啦");
        }
        catch (ArrayIndexOutOfBoundsException e)
        {
            System.out.println(e);
            System.out.println("数组脚表越界啦");
        }
        catch(Exception e)
        {
            System.out.println(e);
        }
        finally
        {
            System.out.println("结束");
        }
    }
}

 

多异常处理

标签:nbsp   index   数组   static   throw   ati   异常   div   style   

原文地址:https://www.cnblogs.com/zhujialei123/p/9345727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!