黑马程序员技术交流社区

标题: 一个功能抛出了多个异常 [打印本页]

作者: 幺零夭夭    时间: 2015-11-4 22:36
标题: 一个功能抛出了多个异常
class FuShuIndexException extends Exception{
        FuShuIndexException(){}

        FuShuIndexException(String msg){
                super(msg);
        }
}
class Demo{
        public int method(int[] arr,int index)throws NullPointerException,FuShuIndexException{       
                if(arr==null)
                        throw new NullPointerException("没有任何数组实体");
                if(index<0)
                        throw new FuShuIndexException();

                return arr[index];
        }
}
class  ExceptionDemo4{
        public static void main(String[] args) {
                int[] arr = new int[3];               
                Demo d = new Demo();
                try{
                        int num = d.method(null,-1);
                        System.out.println("num="+num);       
                }catch(NullPointerException e){
                        System.out.println(e.toString());
                }catch (FuShuIndexException e){
                        System.out.println("message:"+e.getMessage());
                        System.out.println("string:"+e.toString());

                        e.printStackTrace();//jvm默认的异常处理机制就是调用异常对象的这个方法。

                        System.out.println("负数角标异常!!!!");
                }
        }

}


作者: championjx    时间: 2015-11-5 14:05
没注解差评
作者: 幺零夭夭    时间: 2015-11-5 15:10
championjx 发表于 2015-11-5 14:05
没注解差评

好的,下回注意
我的demo好多都不写注解。以后注意{:3_53:}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2