Exception

作者: LeoFranz | 来源:发表于2019-10-21 16:43 被阅读0次

    Throwable-->Exception/Error

    Exception除了runtimeException及其子类都是可检测异常

    • 受检测异常:如果编译器检测到可能抛出该类异常,就必须在方法或者构造方法中声明进行try...catch或throws,如果catch语句没有捕获,JVM还是会抛出异常。否则无法通过编译,常见的受监测异常有IO操作、ClassNotFoundException、线程操作

    • 不受检测异常(运行时异常):没有上述限制,不过想声明捕获也可以,常见的有NullPointExecrption、NumberFormatException(字符串转换为数字)、ArrayIndexOutOfBoundsException(数组越界)、ClassCastException(类型转换错误)、ArithmeticException(算术错误)等。

    Error: An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch 编译时或系统错误,一般无法恢复或者不可捕获,将导致应用程序中断, 通常应用程序无法处理这些错误。但可以声明捕获,如果不能被处理的话就显得多余,因为该类异常是在“正常条件”下发生的,Java 程序通常不捕获Error。

    public void show() {
            try {
                System.out.println("pdd");
                pdd();
            }catch (StackOverflowError error){
                System.out.println("pdd dead");
            }finally {
                System.out.println("after death");
            }
            System.out.println("pdd still here");
        }
    
        public void pdd(){
            pdd();
        }
    //pdd still here也会被打印,但上面说了不建议catch Error
    

    try{}catch{}finally{}中的操作
    如果是程序主动上抛异常而不捕获,那么上抛异常下面的代码将不能执行。

    finally子句一定会执行(即使exception或者Error没有被捕获)。如果在finally语句块中抛出了一个异常,就会终止finally语句块中下方语句执行,同时将try/catch语句中抛出的异常覆盖。

    关于异常的继承

    java继承链中,如果在抛出函数声明中子类声明抛出的异常只能是父类声明的异常或其子异常,或者不声明抛出异常。父类函数中如果只抛出了检查性异常,则子类中还可以声明抛出非检查性异常。但如果父类中只声明抛出了非检查性异常,子类中只能抛出非检查性异常。

    class A {
            public void fun() throws Exception {}
        }
        class B extends A {
            public void fun() throws IOException, RuntimeException {
            }
        }
    

    子类在重写父类抛出异常的方法时,如果实现了有相同方法签名的接口且接口中的该方法也有异常声明,则子类重写的方法要么不抛出异常,要么抛出父类中被重写方法声明异常与接口中被实现方法声明异常的交集。

    class Test {
        public Test() throws IOException {}
        void test() throws IOException {}
    }
    
    interface I1{
        void test() throw Exception;
    }
    
    class SubTest extends Test implements I1 {
        public SubTest() throws Exception,NullPointerException, NoSuchMethodException {}
        void test() throws IOException {}
    }
    
    

    参考文章:
    https://juejin.im/post/5b6d61e55188251b38129f9a#heading-0

    相关文章

      网友评论

          本文标题:Exception

          本文链接:https://www.haomeiwen.com/subject/dawhyctx.html