例外が 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 という 2 つの例外がスローされる場合があります。これら 2 つの例外を 2 つの異なる catch ブロックでキャッチします。
catch ブロックでは、例外の 1 つを上位レベルの例外でラップすることにより、他の例外を直接再スローします。
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 中国語 Web サイトの他の関連記事を参照してください。