如何在 Java 中暫停執行緒



問題描述

如何暫停執行緒?

解決方案

以下示例演示如何透過建立自定義方法 run() 並藉助 Timer 類的辦法暫停執行緒。

import java.util.Timer;
import java.util.TimerTask;

class CanStop extends Thread {
   private volatile boolean stop = false;
   private int counter = 0;
   
   public void run() {
      while (!stop && counter < 10000) {
         System.out.println(counter++);
      }
      if (stop)
      System.out.println("Detected stop"); 
   }
   public void requestStop() {
      stop = true;
   }
}
public class Stopping {
   public static void main(String[] args) {
      final CanStop stoppable = new CanStop();
      stoppable.start();
      
      new Timer(true).schedule(new TimerTask() {
         public void run() {
            System.out.println("Requesting stop");
            stoppable.requestStop();
         }
      }, 
      350);
   }
} 

結果

上述程式碼示例將產生以下結果。

Detected stop
java_threading.htm
廣告
© . All rights reserved.