throw、 throws 在方法中会有例外的发生,而您并不想在 方法中直接处理,而想要由呼叫方法的呼 叫者来处理 使用“ throws”尖键词 - java. ioBufferedReader的 headLine方法就声 明会丢出 Java. IO. EXCeption private void someMethod(int[] arr)throws ArrayIndexOutofBounds Exception, ArithmeticException t //实作throw、throws • 在方法中会有例外的发生,而您并不想在 方法中直接处理,而想要由呼叫方法的呼 叫者来处理 – 使用“throws”关键词 – java.ioBufferedReader的readLine()方法就声 明会丢出java.io.IOException private void someMethod(int[] arr) throws ArrayIndexOutOfBoundsException, ArithmeticException { //实作 }