JAVA——守护线程或用户线程(setDaemon)

JAVA——守护线程或用户线程(setDaemon)_第1张图片

class StopThread implements Runnable {
    private boolean flag = true;
    public synchronized void run()
    {
        while(flag)
        {
            try
            {
                wait();
            }
            catch(InterruptedException e)
            {
                System.out.println(Thread.currentThread().getName()+"....Exception");
                flag = false;
            }
            System.out.println(Thread.currentThread().getName()+"....run");
        }
    }
    public void changeFlag()
    {
        flag = 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++==10)
            {
                st.changeFlag();
                break;
            }
            System.out.println(Thread.currentThread().getName()+"....main"+num);
        }
    }
}

输出结果:

卡着不动了。
现在修改程序:在线程开启之前加上守护线程。
JAVA——守护线程或用户线程(setDaemon)_第2张图片
因为后台线程依赖于前台线程,当主线程挂了,后台线程就不复存在了。因此程序可以终止。

你可能感兴趣的:(java,线程,boolean,Class,守护线程)