当前位置:   article > 正文

UncaughtExceptionHandler线程异常终止处理_setdefaultuncaughtexceptionhandler卡住

setdefaultuncaughtexceptionhandler卡住

单线程的程序发生一个未捕获的异常时我们可以采用try….catch进行异常的捕获,但是在多线程环境中,线程抛出的异常是不能用try….catch捕获的,这样就有可能导致一些问题的出现,比如异常的时候无法回收一些系统资源,或者没有关闭当前的连接等。

package com.koma.demo;

/**
 * @author koma
 * @version 2017年12月5日 上午9:20:00
 */
public class ThreadDemo {
    public static void main(String[] args) {
        try {
            Thread thread = new Thread(new Task());
            thread.start();
        } catch (Exception e) {
            System.out.println("exception: " + e.getMessage());
        }
    }
}

class Task implements Runnable {
    @Override
    public void run() {
        System.out.println(10 / 2);
        System.out.println(10 / 0);
        System.out.println(10 / 1);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

结果:

5
Exception in thread "Thread-0" java.lang.ArithmeticException: / by zero
    at com.koma.demo.Task.run(ThreadDemo.java:22)
    at java.lang.Thread.run(Unknown Source)
  • 1
  • 2
  • 3
  • 4

这个时候api提供的UncaughtExceptionHandler接口就派上用场了。

package com.koma.demo;

import java.lang.Thread.UncaughtExceptionHandler;

/**
 * @author koma
 * @version 2017年12月5日 上午9:27:09
 */
public class CaughtThread {
    public static void main(String args[]) {
        Thread thread = new Thread(new Task());
        // 设置异常处理的hanlder
        thread.setUncaughtExceptionHandler(new ExceptionHandler());
        thread.start();
    }
}

class ExceptionHandler implements UncaughtExceptionHandler {
    @Override
    public void uncaughtException(Thread t, Throwable e) {
        System.out.println("exception: " + e.getMessage());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

结果:

5
exception: / by zero
  • 1
  • 2

Thread还有一个默认的静态方法setDefaultUncaughtExceptionHandler,所有的线程默认的异常处理hanlder。

package com.koma.demo;

import java.lang.Thread.UncaughtExceptionHandler;

/**
 * @author koma
 * @version 2017年12月5日 上午9:27:09
 */
public class CaughtThread {
    public static void main(String args[]) {
        // Thread提供的静态方法,为所有的Thread提供默认的异常处理
        Thread.setDefaultUncaughtExceptionHandler(new ExceptionHandler());
        Thread thread = new Thread(new Task());
        // 设置异常处理的hanlder
        // thread.setUncaughtExceptionHandler(new ExceptionHandler());
        thread.start();
    }
}

class ExceptionHandler implements UncaughtExceptionHandler {
    @Override
    public void uncaughtException(Thread t, Throwable e) {
        System.out.println("exception: " + e.getMessage());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

如果采用线程池通过execute的方法去捕获异常,还按照在外部设置hanlder处理,这样行吗?

package com.koma.demo;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * @author koma
 * @version 2017年12月5日 上午11:10:06
 */
public class ExecuteThread {
    public static void main(String[] args) {
        ExecutorService exec = Executors.newCachedThreadPool();
        Thread thread = new Thread(new ThreadPoolTask());
        thread.setUncaughtExceptionHandler(new ExceptionHandler());
        exec.execute(thread);
        exec.shutdown();
    }
}

class ThreadPoolTask implements Runnable {
    @Override
    public void run() {
        System.out.println(10 / 2);
        System.out.println(10 / 0);
        System.out.println(10 / 1);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27

结果:

5
Exception in thread "pool-1-thread-1" java.lang.ArithmeticException: / by zero
    at com.koma.demo.ThreadPoolTask.run(ExecuteThread.java:24)
    at java.lang.Thread.run(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

由此可见,在外部设置是不行的,必须Runable中设置才行。

package com.koma.demo;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * @author koma
 * @version 2017年12月5日 上午11:10:06
 */
public class ExecuteThread {
    public static void main(String[] args) {
        ExecutorService exec = Executors.newCachedThreadPool();
        Thread thread = new Thread(new ThreadPoolTask());
        exec.execute(thread);
        exec.shutdown();
    }
}

class ThreadPoolTask implements Runnable {
    @Override
    public void run() {
        Thread.currentThread().setUncaughtExceptionHandler(new ExceptionHandler());
        System.out.println(10 / 2);
        System.out.println(10 / 0);
        System.out.println(10 / 1);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27

结果:

5
exception: / by zero
  • 1
  • 2

前面是通过execute提交任务的,如果通过submit提交的任务,无论是抛出的未检测异常还是已检查异常,都将被认为是任务返回状态的一部分。如果一个由submit提交的任务由于抛出了异常而结束,那么这个异常将被Future.get封装在ExecutionException中重新抛出。

package com.koma.demo;

import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;

/**
 * @author koma
 * @version 2017年12月5日 上午11:10:06
 */
public class SubmitThread {
    public static void main(String[] args) {
        ExecutorService exec = Executors.newCachedThreadPool();
        Future<?> future = exec.submit(new Task());
        exec.shutdown();
        try {
            future.get();
        } catch (InterruptedException | ExecutionException e) {
            System.out.println("exception: " + e);
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

结果:

5
exception: java.util.concurrent.ExecutionException: java.lang.ArithmeticException: / by zero
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/265934
推荐阅读
相关标签
  

闽ICP备14008679号