模拟有限个车位,多个车辆抢车位案例。
import java.util.concurrent.Semaphore;
import java.util.concurrent.TimeUnit;
/** * @description: 抢车位案例 * @author: xz */
public class SemaphoreDemo {
public static void main(String[] args) {
robCar();
}
private static void robCar(){
//模拟5个停车位
Semaphore semaphore = new Semaphore(5);
for (int i = 1; i <= 10; i++) {
new Thread(()->{
try {
semaphore.acquire();//抢到资源
System.out.println("线程:"+Thread.currentThread().getName() + "\t抢到车位");
try {
TimeUnit.SECONDS.sleep(3);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("线程:"+Thread.currentThread().getName() + "\t 停3秒离开车位");
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
semaphore.release();//释放资源
}
},String.valueOf(i)).start();
}
}
}
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://wwwxz.blog.csdn.net/article/details/122353462
内容来源于网络,如有侵权,请联系作者删除!