1. semaphore 是什么?
Semaphore 字面意思是信号量的意思。它的作用是控制访问特定资源的线程数量,底层依赖AQS的状态state,是生产中比较常用的一个工具类。(基于共享模式)
// 信号量
Semaphore semaphore = new Semaphore(5);
// 初始 state的值 = 5,总的容量池子
semaphore.acquire(); // 从总的池子里拿出一个凭据
state-1 = 5 - 1 = 4;
semaphore.acquire(2); // 一次从池子里面拿出两个凭据
semaphore.release(); // 把票据还回总的池子
state = state + 1 = 4 + 1 = 5;
semaphore.acquireUninterruptibly(); // 中断也不会往外抛出异常。
semaphore.tryAcquire()可以实现超时等待,spring cloud Hystrix 就采用了这种机制。
CountDownLatch
CountDownLatch countDownLatch = new CountDownLatch(2);
countDownLatch.countDown();
countDownLatch.await();
CyclicBarrier
Exchanger
两个线程之间交换数据用。
End!
标签:semaphore,池子,并发,state,Semaphore,CountDownLatch,countDownLatch From: https://www.cnblogs.com/zhf123/p/16863393.html