概念
1、Semaphore可以看作是已經被廣泛地翻譯成信號量,從概念上講,信號量保持了一組憑證,獲得憑證的線程可以存取資源,使用完成後釋放,我們可以使用信號量來限制存取特定資源的並發執行緒。
2、可以簡單概括為:一個計數器,一個等待佇列,三種方法。在信號量模型中,計數器和等待佇列是透明的,只能透過信號量模型提供的三種方式訪問,即互聯網、acquire和release。
實例
public class SemaphoreDemo { static class Link { } static class ObjPool<T, R> { final List<T> pool; final Semaphore semaphore; ObjPool(int size, T t) { pool = new Vector<>(size); for (int i = 0; i < size; i++) { pool.add(t); } semaphore = new Semaphore(size); } public R exec(Function<T, R> func) throws Exception { T t = null; semaphore.acquire(); try { System.out.println(Thread.currentThread().getName() + "---------争夺锁--------"); t = pool.remove(0); System.out.println(Thread.currentThread().getName() + " 拿到锁执行"); return func.apply(t); } finally { pool.add(t); semaphore.release(); } } } public static void main(String[] args) { ObjPool objPool = new ObjPool(5, new Link()); for (int i = 0; i < 30; i++) { new Thread(() -> { try { objPool.exec(t -> t.toString()); } catch (Exception e) { } }).start(); } } }
以上是Java中如何使用Semaphore實作限流?的詳細內容。更多資訊請關注PHP中文網其他相關文章!