深入理解JUC:第六章:Semaphore信号灯

2022/8/26 23:24:29

本文主要是介绍深入理解JUC:第六章:Semaphore信号灯,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

理论:

在这里插入图片描述

Semaphore 是 synchronized 的加强版,作用是控制线程的并发数量

多个线程抢多个资源,下面案例是有六台车抢三个停车位

使用Semaphore的代码:

public class Demo {
 
    public static void main(String[] args) throws Exception{
        //模拟三个停车位
        Semaphore semaphore = new Semaphore(3);
        //模拟六台车
        for (int i = 1; i <= 6; i++) {
            new Thread(()->{
                try {
                    semaphore.acquire();//减一
                    //semaphore.release();//加一
                    //semaphore.release(2);//加二
                    System.out.println(Thread.currentThread().getName()+"\t 抢到车位");
                    Thread.sleep(2000);
                    System.out.println(Thread.currentThread().getName()+"\t 停车2秒后离开车位");
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }finally {
                    semaphore.release();
                }
            },String.valueOf(i)).start();
        }
    }
}

控制台:

更多内容请见原文,原文转载自:https://blog.csdn.net/weixin_44519496/article/details/120268971

这篇关于深入理解JUC:第六章:Semaphore信号灯的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程