A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 追逐 高级黑马   /  2014-3-19 09:40  /  1048 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

1,停止线程
/*
stop线程已经过时。

如何停止线程呢?
只有一种,
run方法结束。
开启多线程运行,运行代码通常是循环结构的,

只要控制住循环,就可以让run方法结束,也就是线程结束。

特殊情况:
当线程处于了冻结状态,
就不会读取到标记,那么线程就不会结束。

当没有指定的方式让冻结的线程恢复到运行状态时,这时需要对冻结进行清除。
强制让线程恢复到运行状态中来,这样就可以操作标记让线程结束。

Thread类提供该方法interrupt();
*/
//定义一个线程类
class StopThread implements Runnable
{
        private boolean b = true; //定义一个标记
        public synchronized void run()
        {
                while(b)
                {
                        try
                        {
                                wait();
                        }
                        catch (InterruptedException e)
                        {
                                System.out.println(Thread.currentThread().getName() + "...Exception");
                                b = false;
                        }
                        System.out.println(Thread.currentThread().getName() + "...run");
                }
        }

        public void gaiB() //改变标记
        {
                b = false;
        }

}


class StopThreadDemo
{
        public static void main(String[] args)
        {
                StopThread st = new StopThread();
                Thread t1 = new Thread(st);
                Thread t2 = new Thread(st);
                t1.start();
                t2.start();
                int num = 0;
                while(true)
                {
                        if(num++ == 60)
                        {
                                t1.interrupt();
                                t2.interrupt();
                                //st.gaiB();
                                break;
                        }
                        System.out.println(Thread.currentThread().getName() + "..." + num);
                }
                System.out.println("over");
        }
}





2,守护线程

/*
守护线程
运用setDaemon()函数
守护线程就相当于后台线程。依赖于前台线程
也就意味着。当前台线程结束了。后台线程也就结束了

*/
//定义线程
class ShouHu implements Runnable
{
        public void run()
        {
                while(true)
                {
                        System.out.println(Thread.currentThread().getName() + "...run");
                }
               
        }
}

class ShouHuDemo
{
        public static void main(String[] args)
        {
                ShouHu sh = new ShouHu();

                Thread t1 = new Thread(sh);
                Thread t2 = new Thread(sh);

                t1.setDaemon(true); //守护线程必须要在线程开启前运行
                t2.setDaemon(true);
                t1.start();
                t2.start();

                int sum = 0;
                while(true)
                {
                        if(sum++ == 50)
                        {
                                break;
                        }
                        System.out.println(Thread.currentThread().getName() + "....run..." + sum);
                }
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马