码迷,mamicode.com
首页 > 编程语言 > 详细

Java学习----有风险的代码(异常)

时间:2016-01-17 17:35:55      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

Exception继承了Throwable,但是它本身是有异常类的父类。

RuntimeException:运行时异常

 

Exception->RuntimeException->NullPointException

Exception->RuntimeException->IndexOutOfBoundsException->ArrayIndexOfboundsException

 

public class Test {
    
    String x;
    public static void main(String[] args) {
        
        Test test = new Test();
        try {
            System.out.println(test.x.length());
        } catch (ArrayIndexOutOfBoundsException e) {
            test.x = "hello world";
            System.out.println(test.x.length());
        } catch (NullPointerException e) {
            // TODO: handle exception
            test.x = "hello world";
            System.out.println(test.x.length());
        } catch (Exception e) { // 必须放到最后
            // TODO: handle exception
            e.printStackTrace();
        }
        
        System.out.println("end");
    }
}

 

11
end

 

Java学习----有风险的代码(异常)

标签:

原文地址:http://www.cnblogs.com/dragon1013/p/5137383.html

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