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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 幺零夭夭 中级黑马   /  2015-11-4 22:36  /  352 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

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("负数角标异常!!!!");
                }
        }

}

2 个回复

倒序浏览
没注解差评
回复 使用道具 举报

好的,下回注意
我的demo好多都不写注解。以后注意{:3_53:}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马