注意事項
1.守護線程的設定setDaemon(true)必須先放在start()之前,否則程式會出錯。
2.守護線程中建立的所有子線程都是守護線程。
使用jojn()方法,無論執行緒是使用者執行緒還是守護線程,都會等待一個執行緒完成。
實例
public static void main(String[] args) throws InterruptedException { Thread thread = new Thread(new Runnable() { @Override public void run() { for (int i = 1; i <= 10; i++) { // 打印 i 信息 System.out.println("i:" + i + ",isDaemon:" + Thread.currentThread().isDaemon()); try { // 休眠 100 毫秒 Thread.sleep(100); } catch (InterruptedException e) { e.printStackTrace(); } } } }); // 启动线程 thread.start(); // 设置为守护线程 thread.setDaemon(true); }
以上是Java守護線程的注意事項有哪些?的詳細內容。更多資訊請關注PHP中文網其他相關文章!