스레드에서 발생한 예외 잡기
Java에서는 새 스레드가 생성되면 기본 스레드와 동시에 run() 메서드를 실행합니다. 실. 그러나 스레드 내에서 발생한 예외는 메인 클래스에서 직접 처리할 수 없습니다.
다음 코드를 고려하세요.
public class Test extends Thread { public static void main(String[] args) throws InterruptedException { Test t = new Test(); try { t.start(); t.join(); } catch(RuntimeException e) { System.out.println("** RuntimeException from main"); } System.out.println("Main stopped"); } @Override public void run() { try { while(true) { System.out.println("** Started"); sleep(2000); throw new RuntimeException("exception from thread"); } } catch (RuntimeException e) { System.out.println("** RuntimeException from thread"); throw e; } catch (InterruptedException e) { } } }
이 코드에서는 런타임 예외가 스레드에서 발생하지만 메인 클래스에는 잡히지 않습니다. 이 문제를 해결하기 위해 Java는 Thread.UncaughtExceptionHandler라는 편리한 메커니즘을 제공합니다.
Thread.UncaughtExceptionHandler 사용
Thread.UncaughtExceptionHandler는 다음과 같은 예외를 처리하는 방법을 제공합니다. 스레드 내에 잡히지 않습니다. 이를 사용하려면 setUncaughtExceptionHandler()를 사용하여 스레드에 핸들러를 할당하고 uncaughtException() 메서드를 재정의하여 예외 처리 논리를 정의합니다.
예는 다음과 같습니다.
Thread.UncaughtExceptionHandler h = new Thread.UncaughtExceptionHandler() { @Override public void uncaughtException(Thread th, Throwable ex) { System.out.println("Uncaught exception: " + ex); } }; Thread t = new Thread() { @Override public void run() { System.out.println("Sleeping ..."); try { Thread.sleep(1000); } catch (InterruptedException e) { System.out.println("Interrupted."); } System.out.println("Throwing exception ..."); throw new RuntimeException(); } }; t.setUncaughtExceptionHandler(h); t.start();
여기 코드를 실행하면 핸들러는 포착되지 않은 예외를 콘솔에 인쇄합니다. Thread.UncaughtExceptionHandler를 사용하면 스레드 내에서 발생한 예외를 메인 클래스에서 효과적으로 처리할 수 있습니다.
위 내용은 Java의 스레드에서 발생하는 포착되지 않은 예외를 처리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!