當異常緩存在 catch 區塊中時,您可以使用 throw 關鍵字(用於拋出異常物件)重新拋出異常。
重新拋出例外狀況時,您可以拋出與未調整的情況相同的例外 -
try { int result = (arr[a])/(arr[b]); System.out.println("Result of "+arr[a]+"/"+arr[b]+": "+result); } catch(ArithmeticException e) { throw e; }
或者,將其包裝在新的例外中並拋出。當你將一個快取的異常包裝在另一個異常中並拋出時,這被稱為異常鍊或異常包裝,透過這樣做,你可以調整你的異常,拋出一個更高層級的異常,保持抽象。
try { int result = (arr[a])/(arr[b]); System.out.println("Result of "+arr[a]+"/"+arr[b]+": "+result); } catch(ArrayIndexOutOfBoundsException e) { throw new IndexOutOfBoundsException(); }
在以下Java範例中,我們的程式碼在demoMethod()中可能會拋出ArrayIndexOutOfBoundsException和ArithmeticException兩個例外。我們在兩個不同的catch區塊中捕獲這兩個異常。
在catch區塊中,我們透過將其中一個異常包裝在更高級的例外中,另一個異常直接重新拋出。
示範
import java.util.Arrays; import java.util.Scanner; public class RethrowExample { public void demoMethod() { Scanner sc = new Scanner(System.in); int[] arr = {10, 20, 30, 2, 0, 8}; System.out.println("Array: "+Arrays.toString(arr)); System.out.println("Choose numerator and denominator(not 0) from this array (enter positions 0 to 5)"); int a = sc.nextInt(); int b = sc.nextInt(); try { int result = (arr[a])/(arr[b]); System.out.println("Result of "+arr[a]+"/"+arr[b]+": "+result); } catch(ArrayIndexOutOfBoundsException e) { throw new IndexOutOfBoundsException(); } catch(ArithmeticException e) { throw e; } } public static void main(String [] args) { new RethrowExample().demoMethod(); } }
Array: [10, 20, 30, 2, 0, 8] Choose numerator and denominator(not 0) from this array (enter positions 0 to 5) 0 4 Exception in thread "main" java.lang.ArithmeticException: / by zero at myPackage.RethrowExample.demoMethod(RethrowExample.java:16) at myPackage.RethrowExample.main(RethrowExample.java:25)
Array: [10, 20, 30, 2, 0, 8] Choose numerator and denominator(not 0) from this array (enter positions 0 to 5) 124 5 Exception in thread "main" java.lang.IndexOutOfBoundsException at myPackage.RethrowExample.demoMethod(RethrowExample.java:17) at myPackage.RethrowExample.main(RethrowExample.java:23)
以上是在Java中,重新拋出異常是什麼意思?的詳細內容。更多資訊請關注PHP中文網其他相關文章!