如何控制某个方法允许并发访问线程的个数?

如何控制某个方法允许并发访问线程的个数?

复制代码
 1  package com.soyoungboy;
 2 
 3  import java.util.concurrent.Semaphore;
 4  /**
 5  *
 6  * @author soyoungboy 2017年1月25日15:51:15
 7  *
 8  */
 9 public class SemaphoreTest {
10 static Semaphore semaphore = new Semaphore(5,true);
11  public static void main(String[] args) {
12  for(int i=0;i<100;i++){
13  new Thread(new Runnable() {
14 
15  @Override
16  public void run() {
17  test();
18  }
19  }).start();
20  }
21 
22  }
23 
24  public static void test(){
25  try {
26  //申请一个请求
27  semaphore.acquire();
28  } catch (InterruptedException e1) {
29  e1.printStackTrace();
30  }
31  System.out.println(Thread.currentThread().getName()+"进来了");
32  try {
33  Thread.sleep(1000);
34  } catch (InterruptedException e) {
35  e.printStackTrace();
36  }
37  System.out.println(Thread.currentThread().getName()+"走了");
38  //释放一个请求
39  semaphore.release();
40  }
41  }
复制代码

构造函数创建了一个 Semaphore 对象,并且初始化了 5 个信号。这样的效果是控件 test 方法最多只能有 5 个线程并发访问,对于 5 个线程时就排队等待,走一个来一下;

请求一个信号(消费一个信号),如果信号被用完了则等待;

释放一个信号,释放的信号新的线程就可以使用了.

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值