java 并发编程学习笔记(一)之 并发基础

举报
小米粒-biubiubiu 发表于 2020/12/03 00:03:10 2020/12/03
【摘要】                                               并发基础   并发小测试 java.util.concurrent.Semaphore 类 public class SemTest { /** * Semaphore 通常用来控制同时有多少个线程在运行 */ private static Semaphore semap...

                                              并发基础

 

  • 并发小测试

java.util.concurrent.Semaphore 类


  
  1. public class SemTest {
  2. /**
  3. * Semaphore 通常用来控制同时有多少个线程在运行
  4. */
  5. private static Semaphore semaphore = new Semaphore(1);
  6. // private static Semaphore semaphore = new Semaphore(3);
  7. static class car implements Runnable {
  8. @Override
  9. public void run() {
  10. try {
  11. semaphore.acquire();
  12. System.out.println(Thread.currentThread().getName() + "start ");
  13. System.out.println(Thread.currentThread().getName() + "end");
  14. semaphore.release();
  15. } catch (InterruptedException e) {
  16. e.printStackTrace();
  17. }
  18. }
  19. }
  20. public static void main(String[] args) {
  21. ExecutorService service = Executors.newCachedThreadPool();
  22. Thread thread = new Thread(new car(), "小汽车1");
  23. Thread thread2 = new Thread(new car(), "小汽车2");
  24. Thread thread3 = new Thread(new car(), "小汽车3");
  25. List<Thread> list = new ArrayList<Thread>();
  26. list.add(thread);
  27. list.add(thread2);
  28. list.add(thread3);
  29. for (int i = 0; i < list.size(); i++) {
  30. service.execute(list.get(i));
  31. }
  32. }
  33. }

  
  1. @Slf4j
  2. public class CountExample {
  3. private static int threadTotal = 1;
  4. private static int clientTotal = 5000;
  5. private static long count = 0;
  6. public static void main(String[] args) {
  7. ExecutorService exec = Executors.newCachedThreadPool();
  8. final Semaphore semaphore = new Semaphore(threadTotal);
  9. for (int index = 0; index < clientTotal; index++) {
  10. exec.execute(() -> {
  11. try {
  12. semaphore.acquire();
  13. add();
  14. semaphore.release();
  15. } catch (Exception e) {
  16. log.error("exception", e);
  17. }
  18. });
  19. }
  20. exec.shutdown();
  21. log.info("count:{}", count);
  22. }
  23. private static void add() {
  24. count++;
  25. }
  26. }

并发: 多个线程操作相同的资源,保证线程安全,合理使用资源

高并发: 服务器同时处理很多请求,提高程序性能

 

 

 

 

 

 

 

 

 

 

 

文章来源: blog.csdn.net,作者:血煞风雨城2018,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/qq_31905135/article/details/84143986

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。