91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中怎么實現線程的等待與喚醒

發布時間:2021-06-12 18:48:33 來源:億速云 閱讀:266 作者:Leah 欄目:編程語言

這篇文章給大家介紹Java中怎么實現線程的等待與喚醒,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

實例代碼:

class ThreadA extends Thread{
 
  public ThreadA(String name) {
    super(name);
  }
 
  public void run() {
    synchronized (this) {
      System.out.println(Thread.currentThread().getName()+" call notify()");
      notify();
    }
  }
}
public class WaitTest {
  public static void main(String[] args) {
    ThreadA t1 = new ThreadA("t1");
    synchronized(t1) {
      try {
        // 啟動“線程t1”
        System.out.println(Thread.currentThread().getName()+" start t1");
        t1.start();
 
        // 主線程等待t1通過notify()喚醒。
        System.out.println(Thread.currentThread().getName()+" wait()");
        t1.wait();
 
        System.out.println(Thread.currentThread().getName()+" continue");
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
    }
  }
}

輸出結果:main start t1 -> main wait() -> t1 call notify() -> main continue

其實調用t1.start(),t1為就緒狀態,只是main方法中,t1被main線程鎖住了,t1.wait()的時候,讓當前線程等待,其實是讓main線程等待了,然后釋放了t1鎖,t1線程執行,打印t1 call notify(),然后喚醒main線程,最后結束;

這里說一下wait()與sleep()的區別,他們的共同點都是讓線程休眠,但是wait()會釋放對象同步鎖,而sleep()不會;下面的代碼t1結束之后才會運行t2;能夠證實這一點;

public class SleepLockTest{ 
  private static Object obj = new Object();
  public static void main(String[] args){ 
    ThreadA t1 = new ThreadA("t1"); 
    ThreadA t2 = new ThreadA("t2"); 
    t1.start(); 
    t2.start();
  } 
  static class ThreadA extends Thread{
    public ThreadA(String name){ 
      super(name); 
    } 
    public void run(){ 
      synchronized (obj) {
        try {
          for(int i=0; i <10; i++){ 
            System.out.printf("%s: %d\n", this.getName(), i); 
            // i能被4整除時,休眠100毫秒
            if (i%4 == 0)
              Thread.sleep(100);
          }
        } catch (InterruptedException e) {
          e.printStackTrace();
        }
      }
    } 
  } 
}

關于Java中怎么實現線程的等待與喚醒就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

什邡市| 昆山市| 潍坊市| 建始县| 梧州市| 陈巴尔虎旗| 通化县| 玉门市| 丹寨县| 呼玛县| 和静县| 平和县| 庆阳市| 右玉县| 海丰县| 滦平县| 望江县| 新兴县| 泾阳县| 安溪县| 闽清县| 谷城县| 遵义县| 马边| 疏勒县| 进贤县| 缙云县| 潮安县| 璧山县| 开封县| 广东省| 长汀县| 神池县| 山阴县| 旺苍县| 临湘市| 句容市| 华池县| 江都市| 武隆县| 大庆市|