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

守护线程

时间:2017-02-17 19:00:03      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:new t   blog   ted   class   void   pre   sys   cat   oid   

守护线程 setDaemon()


Thread t1 = new Thread() {
    public void run() {
        for(int i = 0; i < 50; i++) {
            System.out.println(getName() + "...aaaaaaaaaaaaaaaaaaaaaa");
            try {
                Thread.sleep(10);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
};

Thread t2 = new Thread() {
    public void run() {
        for(int i = 0; i < 5; i++) {
            System.out.println(getName() + "...bb");
            try {
                Thread.sleep(10);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
};

t1.setDaemon(true);                     //将t1设置为守护线程

t1.start();
t2.start();

 

守护线程

标签:new t   blog   ted   class   void   pre   sys   cat   oid   

原文地址:http://www.cnblogs.com/loaderman/p/6411145.html

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