溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java 多線程-守護(hù)線程

發(fā)布時(shí)間:2020-06-21 12:04:04 來源:網(wǎng)絡(luò) 閱讀:426 作者:wx5d21d5e6e5ab1 欄目:編程語言

守護(hù)線程daemon,是為用戶線程服務(wù)的,在start前設(shè)置
默認(rèn)情況下我們的線程是用戶線程
線程分為用戶線程和守護(hù)線程
虛擬機(jī)必須確保用戶線程執(zhí)行完畢
虛擬機(jī)不用等待守護(hù)線程執(zhí)行完畢
如后臺(tái)記錄操作日志、監(jiān)控內(nèi)存使用等
Thread對(duì)象.setDaemon(true);默認(rèn)為false

public class n {

public static void main(String[]args) throws InterruptedException
{
    test t=new test();
    test2 t2=new test2();

    new Thread(t).start();

    Thread tt2=new Thread(t2);
    tt2.setDaemon(true);//在t用戶線程結(jié)束后結(jié)束
    tt2.start();

}
}
class test implements Runnable
{
public void run()
{
    for(int i=1;i<=365*100;i++)
    {
        System.out.println("me");
    }
    System.out.println("he");
}
}
class test2 implements Runnable{
public void run()
{
    for(;true;)
    {
        System.out.println("she");
    }
}
}
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI