Java 線程狀態(tài)

2018-02-28 15:01 更新

Java線程教程 - Java線程狀態(tài)

停止,掛起和恢復(fù)線程

下面的代碼演示了如何模擬Thread類中的stop(),suspend()和resume()方法。

public class Main extends Thread {
  private volatile boolean keepRunning = true;
  private boolean suspended = false;
  public synchronized void stopThread() {
    this.keepRunning = false;
    this.notify();
  }

  public synchronized void suspendThread() {
    this.suspended = true;
  }

  public synchronized void resumeThread() {
    this.suspended = false;
    this.notify();
  }

  public void run() {
    System.out.println("Thread started...");
    while (keepRunning) {
      try {
        System.out.println("Going to sleep...");
        Thread.sleep(1000);
        synchronized (this) {
          while (suspended) {
            System.out.println("Suspended...");
            this.wait();
            System.out.println("Resumed...");
          }
        }
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
    }
  }
  public static void main(String[] args) throws Exception {
    Main t = new Main();
    t.start();
    Thread.sleep(2000);
    t.suspendThread();
    Thread.sleep(2000);
    t.resumeThread();
    Thread.sleep(2000);
    t.stopThread();
  }
}

上面的代碼生成以下結(jié)果。



以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號