Die Methode
getCause() stammt aus der Klasse Throwable . Wir können diese Methode verwenden, um reason Exception oder return null zurückzugeben, wenn der Ausnahmegrund unbekannt ist. Die Methode getCause() akzeptiert keine Parameter und löst keine Ausnahme aus. Es gibt die Ursache zurück, die von einem seiner Konstruktoren bereitgestellt oder durch die Bildung der Methode initCause() der Klasse Throwable bestimmt wird.
public Throwable getCause()
public class GetCauseMethodTest { public static void main(String[] args) throws Exception { try { myException(); } catch(Exception e) { System.out.println("Cause = " + e.getCause()); } } public static void myException() throws Exception { int arr[] = {1, 3, 5}; try { System.out.println(arr[8]); } catch(ArrayIndexOutOfBoundsException aiobe) { Exception e = new Exception(); throw(Exception); <strong>/</strong>/ throwing the exception to be caught by catch block in main() e.initCause(aiobe); // supplies the cause to getCause() } } }
Cause = java.lang.ArrayIndexOutOfBoundsException: 8
Das obige ist der detaillierte Inhalt vonWelche Bedeutung hat die Methode getCause() in Java?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!