控制并发线程数的Semaphore

Semaphore(信号量)使用来控制同时访问特定资源的线程数量.它通过协调各个线程,以保证合理的使用公共资源.
可以把它比作是控制流量的红绿灯.

public class SemaphoreTest {

private static final int THREAD_COUNT = 30;
private static ExecutorService threadPool = Executors.newFixedThreadPool(THREAD_COUNT);

private Semaphore s = new Semaphore(10);

public static void main(String [] args) {
    for(int i = 0; i< THREAD_COUNT; i++) {
        threadPool.execute(
            new Runnable() {
                public void run() {
                    try {
                        s.acquire();
                        System.out.println("save data");
                        s.release();
                    }
                }
            }
        );
    }
    threadPool.shutDown();
}

}

全部评论

相关推荐

哞客37422655...:兄弟别慌!💪 民办本找实习确实难点,但不是没机会。100+简历才2个面试,可能简历需要优化下: 项目经历写具体点,突出测试用例、bug数量等 技能栏把测试工具/方法论写清楚 可以考虑降低预期,先进小厂积累经验 测试岗相对好进,坚持投!现在才半个月,有人投3个月才上岸的😭 加油,offer在路上了🚀
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务