JUC,自己实现简单的控制线程数

遇到的一个笔试,做个记录,(让你只实现handle方法内容,来控制访问doHandle方法最多只有3个线程数),
如果不是定好只能在handle方法实现,
可以用线程池,或者Semaphore(信号量)来控制执行的线程数

/**

  • 初始化一个信号量为3,默认是false 非公平锁, 模拟3个停车位
    */
//这个要全局,题目没有给,所以没法用这个方法
Semaphore semaphore = new Semaphore(3, false);
//下面是handle里面的方法
semaphore.acquire(); // 抢占
doHandle(threadNum,currently);
semaphore.release();
public class ProcessLimitor {

    private final Integer maxProcess = 3;

    private Integer currently = 0;

    public void handle(int threadNum)throws InterruptedException{
        synchronized (this){
            while (currently >= maxProcess){
                this.wait();
            }
            currently++;
        }

        System.out.println(Thread.currentThread().getName());
        doHandle(threadNum,currently);
        synchronized (this){
            currently--;
            this.notifyAll();
        }

    }

    private void doHandle(int threadNum,int currently)throws InterruptedException{
        Thread.sleep(5000);
    }

    public static void main(String[] args) {
        final ProcessLimitor limitor = new ProcessLimitor();

        for (int i = 0;i<20;i++){
            final int threadNum = i;
            Thread t = new Thread(new Runnable() {
                @Override
                public void run() {
                    try {
                        limitor.handle(threadNum);
                    }catch (Exception e){
                        e.printStackTrace();;
                    }
                }
            });
            t.start();
        }

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值