欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

线程信号量semaphore

程序员文章站 2022-06-04 22:00:31
...

需求说明:6辆车抢占三个停车位

package hello_java;

import java.util.Random;
import java.util.concurrent.Semaphore;

public class Tool03 {
    public static void main(String[] args) {
        Semaphore semaphore = new Semaphore(3);

        for (int i = 0; i < 6; i++) {
            new Thread(() -> {
//                抢占资源
                try {
                    semaphore.acquire();
                    System.out.println("车辆" + Thread.currentThread().getName() + "获得停车位");
//                停车时间
                    Thread.sleep(new Random().nextInt(1000));
//                 释放资源
                    System.out.println("车辆" + Thread.currentThread().getName() + "离开了");
                    semaphore.release();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            },String.valueOf(i + 1)).start();
        }
    }
}

结果如下:

车辆1获得停车位
车辆3获得停车位
车辆2获得停车位
车辆1离开了
车辆5获得停车位
车辆2离开了
车辆4获得停车位
车辆5离开了
车辆6获得停车位
车辆4离开了
车辆3离开了
车辆6离开了

 

 

相关标签: semaphore 信号量