您好,登錄后才能下訂單哦!
本篇內容主要講解“怎么用CountDownLatch完成LeetCode1114”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么用CountDownLatch完成LeetCode1114”吧!
1) CountDownLatch初始化之后設置的計數值在被減到0之后就不能被復原了,而Semaphore可以通過release恢復信號/許可的數量,所以CountDownLatch能解決的問題范疇要小于Semaphore。在用到了semaphore.release這種操作的代碼里,我們基本是沒辦法用CountDownLatch替換Semaphore來解決的。CountDownLatch就如一次性的門栓之于大門,門栓被拉開之后,大門的狀態只能是‘開’了,我們沒有能力再把門關起來。而Semaphore更像是信號燈,我們可以根據需要給出不同的‘紅’、‘綠’(release)信號,因此適用的場景可以更復雜。
所以對于LeetCode多線程練習題,只有1114題可以用CountDownLatch來完成。
2) 另外,從允許、禁止這個方向上講,Semaphore是信號/許可數量大于0時線程可運行(semapher.acquire不阻塞),對于CoundDownLatch來說則是計數值等于0時線程可運行(countDownLatch.await不阻塞)。
用CountDownLatch完成LeetCode 1114:
public class FooByCDL {
private CountDownLatch cdl2 = new CountDownLatch(1);
private CountDownLatch cdl3 = new CountDownLatch(1);
public FooByCDL() {}
public void first(Runnable printFirst) throws InterruptedException {
printFirst.run();
cdl2.countDown();
}
public void second(Runnable printSecond) throws InterruptedException {
cdl2.await();
printSecond.run();
cdl3.countDown();
}
public void third(Runnable printThird) throws InterruptedException {
cdl3.await();
printThird.run();
}
public static void main(String[] args) {
FooByCDL foo = new FooByCDL();
new Thread(() -> {
try {
foo.third(() -> System.out.print("three"));
} catch (InterruptedException ie) { ie.printStackTrace();}
}).start();
new Thread(() -> {
try {
foo.second(() -> System.out.print("two"));
} catch (InterruptedException ie) { ie.printStackTrace();}
}).start();
new Thread(() -> {
try {
foo.first(() -> System.out.print("one"));
} catch (InterruptedException ie) { ie.printStackTrace();}
}).start();
}
}
到此,相信大家對“怎么用CountDownLatch完成LeetCode1114”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。