码迷,mamicode.com
首页 > 编程语言 > 详细

3.1.3 允许多个线程同时访问:信号量

时间:2018-02-07 12:11:52      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:tor   cat   信号量   div   new   main   访问   final   interrupt   

package 第三章.信号量;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Semaphore;

/**
* Created by zzq on 2018/1/23.
*/
public class SimpoTest implements Runnable {
final Semaphore semaphore=new Semaphore(5);
public void run() {
try {
semaphore.acquire();
System.out.println(Thread.currentThread().getName() + "-------获取执行权");
Thread.sleep(2000);
semaphore.release();
} catch (InterruptedException e) {
e.printStackTrace();
}
}

public static void main(String[] args) {
ExecutorService executorService = Executors.newFixedThreadPool(20);
final SimpoTest simpoTest=new SimpoTest();
for (int i = 0; i < 10; i++) {
executorService.submit(simpoTest);
}
executorService.shutdown();

}
}

3.1.3 允许多个线程同时访问:信号量

标签:tor   cat   信号量   div   new   main   访问   final   interrupt   

原文地址:https://www.cnblogs.com/anxbb/p/8425529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!