亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

用線程實現按序打印

發布時間:2021-06-24 14:42:09 來源:億速云 閱讀:88 作者:chen 欄目:大數據

這篇文章主要介紹“用線程實現按序打印”,在日常操作中,相信很多人在用線程實現按序打印問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”用線程實現按序打印”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

總結:所有的解法都是一個理念,無論采用何種方式,開始時必須執行first線程,然后設置條件滿足second執行而first和third線程都不能執行,同時只有first線程執行完才能給與該條件,然后設置條件滿足third執行而first和second線程都不能執行,同時只有second線程執行成功后才能給與該條件

解法一:Synchronized鎖和控制變量

public class Foo {
    //控制變量
    private int flag = 0;
    //定義Object對象為鎖
    private Object lock = new Object();
    public Foo() {
    }
    public void first(Runnable printFirst) throws InterruptedException {
        synchronized (lock){
            //如果flag不為0則讓first線程等待,while循環控制first線程如果不滿住條件就一直在while代碼塊中,防止出現中途跳入,執行下面的代碼,其余線程while循環同理
            while( flag != 0){
                lock.wait();
            }
            // printFirst.run() outputs "first". Do not change or remove this line.
            printFirst.run();
            //定義成員變量為 1
            flag = 1;
            //喚醒其余所有的線程
            lock.notifyAll();
        }
    }
    public void second(Runnable printSecond) throws InterruptedException {
        synchronized (lock){
            //如果成員變量不為1則讓二號等待
            while (flag != 1){
                lock.wait();
            }
            // printSecond.run() outputs "second". Do not change or remove this line.
            printSecond.run();
            //如果成員變量為 1 ,則代表first線程剛執行完,所以執行second,并且改變成員變量為 2
            flag = 2;
            //喚醒其余所有的線程
            lock.notifyAll();
        }
    }
    public void third(Runnable printThird) throws InterruptedException {
        synchronized (lock){
            //如果flag不等于2 則一直處于等待的狀態
            while (flag != 2){
                lock.wait();
            }
            // printThird.run() outputs "third". Do not change or remove this line.
            //如果成員變量為 2 ,則代表second線程剛執行完,所以執行third,并且改變成員變量為 0
            printThird.run();
            flag = 0;
            lock.notifyAll();
        }
    }
}
解法二:CountDownLatch

public class Foo {
    //聲明兩個 CountDownLatch變量
    private CountDownLatch countDownLatch01;
    private CountDownLatch countDownLatch02;

    public Foo() {
        //初始化每個CountDownLatch的值為1,表示有一個線程執行完后,執行等待的線程
        countDownLatch01 = new CountDownLatch(1);
        countDownLatch02 = new CountDownLatch(1);
    }
    public void first(Runnable printFirst) throws InterruptedException {
            //當前只有first線程沒有任何的阻礙,其余兩個線程都處于等待階段
            // printFirst.run() outputs "first". Do not change or remove this line.
            printFirst.run();
            //直到CountDownLatch01里面計數為0才執行因調用該countDownCatch01.await()而等待的線程
            countDownLatch01.countDown();
    }
    public void second(Runnable printSecond) throws InterruptedException {
            //只有countDownLatch01為0才能通過,否則會一直阻塞
            countDownLatch01.await();
            // printSecond.run() outputs "second". Do not change or remove this line.
            printSecond.run();
            //直到CountDownLatch02里面計數為0才執行因調用該countDownCatch02.await()而等待的線程
            countDownLatch02.countDown();
    }
    public void third(Runnable printThird) throws InterruptedException {
            //只有countDownLatch02為0才能通過,否則會一直阻塞
            countDownLatch02.await();
            // printThird.run() outputs "third". Do not change or remove this line.
            printThird.run();
    }
}

解法三:Semaphore(信號量)
Semaphore與CountDownLatch相似,不同的地方在于Semaphore的值被獲取到后是可以釋放的,并不像CountDownLatch那樣一直減到底

獲得Semaphore的線程處理完它的邏輯之后,你就可以調用它的Release()函數將它的計數器重新加1,這樣其它被阻塞的線程就可以得到調用了

public class Foo03 {
    //聲明兩個 Semaphore變量
    private Semaphore spa,spb;
    public Foo03() {
        //初始化Semaphore為0的原因:如果這個Semaphore為零,如果另一線程調用(acquire)這個Semaphore就會產生阻塞,便可以控制second和third線程的執行
        spa = new Semaphore(0);
        spb = new Semaphore(0);
    }
    public void first(Runnable printFirst) throws InterruptedException {
            // printFirst.run() outputs "first". Do not change or remove this line.
            printFirst.run();
            //只有等first線程釋放Semaphore后使Semaphore值為1,另外一個線程才可以調用(acquire)
            spa.release();
    }
    public void second(Runnable printSecond) throws InterruptedException {
            //只有spa為1才能執行acquire,如果為0就會產生阻塞
            spa.acquire();
            // printSecond.run() outputs "second". Do not change or remove this line.
            printSecond.run();
            spb.release();
    }
    public void third(Runnable printThird) throws InterruptedException {
            //只有spb為1才能通過,如果為0就會阻塞
            spb.acquire();
            // printThird.run() outputs "third". Do not change or remove this line.
            printThird.run();
    }
}

到此,關于“用線程實現按序打印”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

搜索| 武城县| 满洲里市| 米脂县| 乐山市| 聂拉木县| 呼伦贝尔市| 衡阳市| 友谊县| 安福县| 徐州市| 介休市| 康乐县| 鄢陵县| 吴旗县| 内黄县| 临清市| 永靖县| 锡林郭勒盟| 崇信县| 汤阴县| 罗江县| 博白县| 房产| 太仓市| 枣阳市| 云南省| 天祝| 垦利县| 东光县| 山东| 西安市| 修文县| 大渡口区| 武隆县| 荆门市| 岑巩县| 沐川县| 上杭县| 绿春县| 祁阳县|