代码拉取完成,页面将自动刷新
package cc.openhome;
public class ThreadGroupDemo2 {
public static void main(String[] args) {
ThreadGroup group = new ThreadGroup("group");
Thread thread1 = new Thread(group, () -> {
throw new RuntimeException("thread1 测试异常");
});
thread1.setUncaughtExceptionHandler((thread, throwable) -> {
System.out.printf("%s: %s%n",
thread.getName(), throwable.getMessage());
});
Thread thread2 = new Thread(group, () -> {
throw new RuntimeException("thread2 测试异常");
});
thread1.start();
thread2.start();
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。