• 2022-05-28
    若testFails()方法返回true,选项( )是下列代码的执行结果public void method() throws IOException{ If(testFails()){ throw new IOExcetpion(); }}
    A: method()方法处理IOException异常
    B: method()方法将IOException抛出,由调用它的方法处理该异常
    C: 由系统处理异常
    D: 不做任何处理