gpt4 book ai didi

java - 如何为线程组设置UncaughtExceptionHandler

转载 作者:行者123 更新时间:2023-12-02 02:36:36 24 4
gpt4 key购买 nike

假设我有 5 个线程,属于名为“Fruits-group”的线程组。

如何一次性将 UncaughtExceptionHandler 分配给 Fruits-group 的所有线程?

我知道我们可以为所有线程定义一个全局UncaughtExceptionHandler。我正在寻找的是将 UncaughtExceptionHandler 分配给整个线程组?

最佳答案

TL;DR子类化ThreadGroup并重写uncaughtException()方法。

一个ThreadGroup UncaughtExceptionHandler ,实现uncaughtException(Thread t, Throwable e)方法:

Called by the Java Virtual Machine when a thread in this thread group stops because of an uncaught exception, and the thread does not have a specific Thread.UncaughtExceptionHandler installed.

The uncaughtException method of ThreadGroup does the following:

  • If this thread group has a parent thread group, the uncaughtException method of that parent is called with the same two arguments.
  • Otherwise, this method checks to see if there is a default uncaught exception handler installed, and if so, its uncaughtException method is called with the same two arguments.
  • Otherwise, this method determines if the Throwable argument is an instance of ThreadDeath. If so, nothing special is done. Otherwise, a message containing the thread's name, as returned from the thread's getName method, and a stack backtrace, using the Throwable's printStackTrace method, is printed to the standard error stream.

Applications can override this method in subclasses of ThreadGroup to provide alternative handling of uncaught exceptions.

<小时/>

更新

如果您希望能够为ThreadGroup设置一个UncaughtExceptionHandler,您可以创建一个委托(delegate)子类:

public class ExceptionHandlingThreadGroup extends ThreadGroup {
private UncaughtExceptionHandler uncaughtExceptionHandler;

public ExceptionHandlingThreadGroup(String name) {
super(name);
}
public ExceptionHandlingThreadGroup(ThreadGroup parent, String name) {
super(parent, name);
}

public UncaughtExceptionHandler getUncaughtExceptionHandler() {
return this.uncaughtExceptionHandler;
}
public void setUncaughtExceptionHandler(UncaughtExceptionHandler uncaughtExceptionHandler) {
this.uncaughtExceptionHandler = uncaughtExceptionHandler;
}

@Override
public void uncaughtException(Thread t, Throwable e) {
if (this.uncaughtExceptionHandler != null)
this.uncaughtExceptionHandler.uncaughtException(t, e);
else
super.uncaughtException(t, e);
}
}

不过,一般来说,直接在子类中实现异常处理逻辑可能会更好,但这样,您可以使用现有的UncaughtExceptionHandler实现.

关于java - 如何为线程组设置UncaughtExceptionHandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46226650/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com