1. 程式人生 > >守護線程環境幸運飛艇平臺定制搭建

守護線程環境幸運飛艇平臺定制搭建

定制 for except 繼續 當前 java cpu 需要 dex

休眠線程:

package javastudy01;

public class sleep {
//倒計時程序
public static void main(String[] args) throws InterruptedException {
for(int i=10;i>=0;i--){
Thread.sleep(1000); //此處因為是靜態方法,所以Thread類名可以直接調用
System.out.println(i);
}

}

}
運行結果守護線程環境搭建
幸運飛艇平臺定制,需要請搜索【大神源碼論壇】dsluntan.com 客服企娥3393756370 V信17061863513,

守護線程(重點)

正常情況下一下程序t1執行30次,t2執行50次 加上守護線程後會有變化

守護線程不會單獨執行,在其他非守護線程都執行結束後,它也會自動退出不再執行

package javastudy01;

public class setDaemon {

public static void main(String[] args) {
     Thread t1 = new Thread(){

         public void run(){
             for(int i=0; i<30;i++){
                 System.out.println(this.getName() +" : "+ i);
             }
         }

     };

Thread t2 = new Thread(){

         public void run(){
             for(int i=0; i<50;i++){
                 System.out.println(this.getName() +" : "+ i);
             }
         }

     };

     t2.setDaemon(true);
     t1.start();
     t2.start();

}

}
運行結果

加入線程

join()當前線程暫定,待指定的線程執行結束後,再繼續

t.join(); 相當於給t插隊

join(int) 等待指定毫秒後繼續

禮讓線程

yield 讓出CPU給其他線程

守護線程環境幸運飛艇平臺定制搭建