码迷,mamicode.com
首页 > 编程语言 > 详细

Java多线程之后台线程不执行finally

时间:2014-05-25 22:43:58      阅读:436      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

后台线程不执行finally

bubuko.com,布布扣
package wzh.daemon;

import java.util.concurrent.TimeUnit;

class ADaemon implements Runnable {

    @Override
    public void run() {
        try {
            System.out.println("Starting ADaemon");
            TimeUnit.SECONDS.sleep(1);
        } catch (Exception e) {
            System.out.println("Exiting via InterruptedException");
        } finally {
            //如果是后台线程,则finally不会被执行。
            //因为主线程退出后,后台线程就自动退出了。
            System.out.println("This should always run?");
        }
    }

}

public class DaemonsDontRunFinally {
    public static void main(String[] args) {
        Thread thread = new Thread(new ADaemon());
        thread.setDaemon(true);
        thread.start();
    }
}
bubuko.com,布布扣

 

Java多线程之后台线程不执行finally,布布扣,bubuko.com

Java多线程之后台线程不执行finally

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/zhuawang/p/3751138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!