91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中如何使用守護線程

發布時間:2021-07-11 14:35:39 來源:億速云 閱讀:164 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關Java中如何使用守護線程,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

一 點睛

針對守護線程,只要有一個用戶線程在執行,這個進程就不會結束。

當線程中只剩下守護線程時,JVM會自動退出,反之,如果還有其他任何用戶線程存在,JVM都不會退出。

二 代碼

public class ThreadDaemon{  public static void main( String args[] )  {   ThreadTest t = new ThreadTest();   Thread tt = new Thread( t );   tt.setDaemon( true ); // 設置后臺運行   tt.start( );   try   { // 睡眠1毫秒,避免可能出現的沒有輸出的現象     Thread.sleep( 1 );   }   catch( InterruptedException e )   {     e.printStackTrace();   }  }}class ThreadTest implements Runnable{  public void run()  {   for( int i = 0; true; ++i )   {     System.out.println( i + " " + Thread.currentThread().getName()        + " is running." );   }  }}

三 運行

0 Thread-0 is running.1 Thread-0 is running.2 Thread-0 is running.3 Thread-0 is running.4 Thread-0 is running.5 Thread-0 is running.6 Thread-0 is running.7 Thread-0 is running.8 Thread-0 is running.9 Thread-0 is running.10 Thread-0 is running.11 Thread-0 is running.12 Thread-0 is running.13 Thread-0 is running.14 Thread-0 is running.15 Thread-0 is running.16 Thread-0 is running.17 Thread-0 is running.18 Thread-0 is running.19 Thread-0 is running.20 Thread-0 is running.21 Thread-0 is running.22 Thread-0 is running.23 Thread-0 is running.24 Thread-0 is running.25 Thread-0 is running.26 Thread-0 is running.27 Thread-0 is running.28 Thread-0 is running.

看完上述內容,你們對Java中如何使用守護線程有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

福海县| 东港市| 四川省| 龙岩市| 安西县| 新平| 荣昌县| 邹平县| 安徽省| 临清市| 松潘县| 广灵县| 乐至县| 隆回县| 萝北县| 邵东县| 神池县| 响水县| 南澳县| 青岛市| 梅州市| 普格县| 德江县| 文昌市| 眉山市| 中山市| 循化| 广州市| 华宁县| 丹棱县| 甘谷县| 万盛区| 黄石市| 娄烦县| 碌曲县| 措美县| 南昌县| 阿拉尔市| 郓城县| 广宗县| 清远市|