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

溫馨提示×

java wait方法怎樣使用

小樊
84
2024-11-17 00:49:57
欄目: 編程語言

wait()方法是Java中的一個同步機制,用于讓當前線程等待,直到其他線程調用同一個對象的notify()notifyAll()方法。wait()方法通常與synchronized關鍵字和synchronized塊一起使用,以確保線程安全。

以下是wait()方法的基本用法:

  1. 首先,確保要調用的對象已經同步,即使用synchronized關鍵字修飾方法或代碼塊。
  2. 在同步代碼塊或方法中,使用wait()方法讓當前線程等待。調用wait()方法時,當前線程會釋放對象的鎖,進入等待狀態。
  3. 當其他線程調用了同一個對象的notify()notifyAll()方法時,等待的線程會被喚醒。被喚醒的線程需要重新獲取對象的鎖,然后繼續執行。

下面是一個簡單的示例:

public class WaitNotifyExample {
    private static final Object lock = new Object();
    private static boolean ready = false;

    public static void main(String[] args) {
        Thread t1 = new Thread(() -> {
            synchronized (lock) {
                System.out.println("Thread 1: Waiting for the other thread to set the ready flag.");
                try {
                    lock.wait(); // 當前線程進入等待狀態
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println("Thread 1: The ready flag is set, and I can continue.");
            }
        });

        Thread t2 = new Thread(() -> {
            synchronized (lock) {
                try {
                    Thread.sleep(2000); // 等待2秒
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println("Thread 2: Setting the ready flag.");
                ready = true;
                lock.notify(); // 喚醒等待的線程
            }
        });

        t1.start();
        t2.start();
    }
}

在這個示例中,我們有兩個線程t1t2t1線程等待另一個線程t2設置ready標志。t2線程在等待2秒后設置ready標志,并通過調用lock.notify()喚醒等待的線程。當t1線程被喚醒后,它會繼續執行并打印出相應的消息。

0
邯郸县| 蒙山县| 玛曲县| 张家口市| 攀枝花市| 于都县| 静宁县| 通海县| 巴林左旗| 广汉市| 呼伦贝尔市| 乌兰县| 牡丹江市| 鹿邑县| 南宁市| 银川市| 镇安县| 阿拉尔市| 黑河市| 密山市| 沾化县| 普格县| 宜宾市| 公安县| 宜阳县| 梨树县| 兴城市| 晋城| 巴青县| 慈利县| 昌江| 剑阁县| 英超| 浠水县| 社会| 东阿县| 长顺县| 辽阳县| 仁化县| 曲靖市| 久治县|