java多執行緒快速入門(七)
阿新 • • 發佈:2018-11-25
什麼是守護執行緒
守護執行緒是為使用者執行緒服務的這麼一個執行緒,主執行緒結束,守護執行緒也結束
package com.cppdy; class MyThread3 extends Thread{ @Override public void run() { System.out.println("開始執行執行緒"); try { sleep(1000); } catch (Exception e) { } System.out.println("結束執行執行緒"); } } public class ThreadDemo3 { public static void main(String[] args) throws Exception{ MyThread3 mt = new MyThread3(); //設定守護執行緒 mt.setDaemon(true); mt.start(); Thread.sleep(500); } }