getCause() 메소드는 Throwable 클래스에서 제공되며, 이 메소드를 사용하여 reason Exception을 반환하거나 예외 이유를 알 수 없는 경우 return null을 반환할 수 있습니다. getCause() 메소드는 매개변수를 허용하지 않으며 예외를 발생시키지 않습니다. 생성자 중 하나가 제공하거나 Throwable 클래스의 initCause() 메서드 구성에 따라 결정된 원인을 반환합니다.
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
위 내용은 Java에서 getCause() 메소드의 중요성은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!