Semaphore是在当前在多线程环境下被扩放使用,单线程不可能使用,记住这是Semaphore使用的前提,必须是多线程环境下,Semaphore可以维护当前访问自身的线程个数,并提供了同步机制,使用Semaphore可以控制同时访问资源的线程个数,打个比方
厕所有5个坑,假如有10个人要上厕所,那么同时只能有多少个人去上厕所呢?同时只能有5个人能够占用,当5个人中
的任何一个人让开后,其中等待的另外5个人中又有一个人可以占用了。另外等待的5个人中可以是随机获得优先机会,也可以是按照先来后到的顺序获得机会,这取决于构造Semaphore对象时传入的参数选项,现在写个测试类使用一下
SemaphoreTest.java
public class SemaphoreTest { public static void main(String[] args) { ExecutorService service = Executors.newCachedThreadPool(); final Semaphore sp = new Semaphore(3); for(int i=0;i<10;i++){ Runnable runnable = new Runnable(){ public void run(){ try { sp.acquire(); } catch (InterruptedException e1) { e1.printStackTrace(); } System.out.println("线程" + Thread.currentThread().getName() + "进入,当前已有" + (3-sp.availablePermits()) + "个并发"); try { Thread.sleep((long)(Math.random()*10000)); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("线程" + Thread.currentThread().getName() + "即将离开"); sp.release(); //下面代码有时候执行不准确,因为其没有和上面的代码合成原子单元 System.out.println("线程" + Thread.currentThread().getName() + "已离开,当前已有" + (3-sp.availablePermits()) + "个并发"); } }; service.execute(runnable); } } }
打印结果:
线程pool-1-thread-1进入,当前已有1个并发 线程pool-1-thread-4进入,当前已有2个并发 线程pool-1-thread-8进入,当前已有3个并发 线程pool-1-thread-4即将离开 线程pool-1-thread-4已离开,当前已有2个并发 线程pool-1-thread-2进入,当前已有3个并发 线程pool-1-thread-8即将离开 线程pool-1-thread-8已离开,当前已有2个并发 线程pool-1-thread-6进入,当前已有3个并发 线程pool-1-thread-1即将离开 线程pool-1-thread-1已离开,当前已有2个并发 线程pool-1-thread-10进入,当前已有3个并发 线程pool-1-thread-10即将离开 线程pool-1-thread-10已离开,当前已有2个并发 线程pool-1-thread-5进入,当前已有3个并发 线程pool-1-thread-2即将离开 线程pool-1-thread-2已离开,当前已有2个并发 线程pool-1-thread-9进入,当前已有3个并发 线程pool-1-thread-6即将离开 线程pool-1-thread-6已离开,当前已有2个并发 线程pool-1-thread-7进入,当前已有3个并发 线程pool-1-thread-5即将离开 线程pool-1-thread-5已离开,当前已有2个并发 线程pool-1-thread-3进入,当前已有3个并发 线程pool-1-thread-7即将离开 线程pool-1-thread-7已离开,当前已有2个并发 线程pool-1-thread-9即将离开 线程pool-1-thread-9已离开,当前已有1个并发 线程pool-1-thread-3即将离开 线程pool-1-thread-3已离开,当前已有0个并发
时间: 2024-10-18 10:24:56