多异常处理

Posted zhujialei123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多异常处理相关的知识,希望对你有一定的参考价值。

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("结束");
        }
    }
}

 

以上是关于多异常处理的主要内容,如果未能解决你的问题,请参考以下文章

PCL异常处理:pcl 1.8.13rdpartyoostincludeoost-1_64oost ypeofmsvc ypeof_impl.hpp(125): error(代码片段

使用片段中的处理程序时出现非法状态异常

Java异常处理机制

java 反射代码片段

多线程是啥

java.util.MissingResourceException: Can't find bundle for base name init, locale zh_CN问题的处理(代码片段