首頁 > Java > java教程 > 主體

在Java中,重新拋出異常是什麼意思?

WBOY
發布: 2023-09-01 16:57:05
轉載
1360 人瀏覽過

在Java中,重新拋出異常是什麼意思?

當異常緩存在 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();
   }
}
登入後複製

Output1

的中文翻譯為:

輸出1

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)
登入後複製

輸出2

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中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板