Thread.getUncaughtExceptionHandler() 方法



描述

Java Thread getUncaughtExceptionHandler() 方法返回当线程由于未捕获异常而突然终止时调用的处理器。

声明

以下是 java.lang.Thread.getUncaughtExceptionHandler() 方法的声明

public Thread.UncaughtExceptionHandler getUncaughtExceptionHandler()

参数

返回值

此方法不返回任何值。

异常

示例:获取线程的 UncaughtExceptionHandler

以下示例演示了 Java Thread getUncaughtExceptionHandler() 方法的用法。在这个程序中,我们通过实现 Runnable 接口创建了一个线程类 AdminThread。在 run 方法中,我们抛出了一个 RuntimeException。在 main 方法中,我们创建了一个 AdminThread 类的新的线程,并使用 setUncaughtExceptionHandler() 方法设置了一个未捕获异常处理器,该处理器打印引发的异常。现在使用 getUncaughtExceptionHandler(),检索并打印异常处理器。

使用 start() 方法,我们启动了线程,结果打印在控制台上。

package com.tutorialspoint;

public class ThreadDemo {

   public static void main(String[] args) {

      Thread t = new Thread(new AdminThread());
      t.setUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {

         public void uncaughtException(Thread t, Throwable e) {
            System.out.println(t + " throws exception: " + e);
         }
      });
      // this will call run() function
      t.start();
	  
      /* returns the handler invoked when this thread abruptly 
         terminates due to an uncaught exception. */
      Thread.UncaughtExceptionHandler handler = 
      t.getUncaughtExceptionHandler();
      System.out.println(handler);
   }
}

class AdminThread implements Runnable {

   public void run() {
      throw new RuntimeException();
   }
} 

输出

让我们编译并运行上面的程序,这将产生以下结果:

com.tutorialspoint.ThreadDemo$1@28a418fc
Thread[#21,Thread-0,5,main] throws exception: java.lang.RuntimeException
java_lang_thread.htm
广告