您好,登錄后才能下訂單哦!
守護(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");
}
}
}
免責(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)容。