码迷,mamicode.com
首页 > 其他好文 > 详细

SemaphoreDemo

时间:2018-06-03 17:39:29      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:exec   run   []   void   rri   ble   runnable   new   style   

package com.fh.interview;

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

/**
 * @author
 *
 * Semaphore用来做特殊资源的并发访问控制是相当合适的,如果有业务场景需要进行流量控制,可以优先考虑Semaphore。
 * @create 2018-06-03 下午4:21
 **/
public class SemaphoreDemo {

    private static Semaphore semaphore = new Semaphore(5);

    public static void main(String[] args) {
        ExecutorService pool = Executors.newFixedThreadPool(10);
        for (int i=0;i<10;i++){
            pool.execute(new Runnable() {
                @Override
                public void run() {
                    try {
                        System.out.println("start");
                        semaphore.acquire();
                        System.out.println("do");
                        Thread.sleep(10000);
                        semaphore.release();
                        System.out.println("release");
                    }catch (Exception e){

                    }
                }
            });
        }
        pool.shutdown();
    }
}

 

SemaphoreDemo

标签:exec   run   []   void   rri   ble   runnable   new   style   

原文地址:https://www.cnblogs.com/nihaofenghao/p/9129559.html

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