執行緒停止
阿新 • • 發佈:2022-02-04
執行緒狀態
五大狀態
執行緒方法
停止執行緒
- 不推薦使用JDK提供的stop()、destroy()方法。【已廢棄】
- 推薦執行緒自己停止下來
- 建議使用一個標誌位進行終止變數當flag=false,則終止執行緒執行。
package com.wang.multiThread.state; import javax.xml.transform.Source; //測試stop //1.建議執行緒正常停止--->利用次數,不建議死迴圈。 //2.建議使用標誌位--->設定一個標誌位 //3.不要使用stop或者destroy等過時或者JDK不建議使用的方法 public class TestStop implements Runnable { //1.設定一個標識位 private boolean flag = true; @Override public void run() { int i = 0; while (flag) { System.out.println("run......Thread" + i++); } } //2.設定一個公開的方法停止執行緒,轉換標誌位 public void stop(){ this.flag = false; } public static void main(String[] args) { TestStop testStop = new TestStop(); new Thread(testStop).start(); for (int i = 0; i < 1000; i++) { System.out.println("main" + i); if (i == 900){ //呼叫stop方法切換標誌位,讓執行緒停止 testStop.stop(); System.out.println("執行緒該停止了"); } } } }