• 并发执行的效率一定比串行执行快?


    测试主机配置: 为windows10 16核32G、Linux 2核2G、Linux 8核16G、
    Cpu型号和核心数,下面已经列出。

    在Windows10操作系统下 16核32G操作系统下
    在这里插入图片描述
    这里我们先给出结论

    不同的主机配置,执行结果是不一样的,而且处理不同的任务,结果也是不一样的。所以并发执行效率不一定比串行快。

    package demo1;
    
    public class ConcurrencyTest {
    
        public static void main(String[] args) throws InterruptedException {
    
            int[] arrCount=new int[]{10000,100000,10000000,100000000,1000000000};
    
            for (int i = 0; i < arrCount.length; i++) {
                int count = arrCount[i];
                System.out.println("并发累计执行 :"+count+"次");
                concurrency(count);
                serial(count);
                System.out.println("----------------------------");
            }
    
        }
    
        private static void concurrency(int count) throws InterruptedException {
            long start= System.currentTimeMillis();
            Thread thread=new Thread(new Runnable() {
                @Override
                public void run() {
                       int a=0;
                    for (long i = 0; i < count; i++) {
                        a+=5;
                    }
                }
            });
            thread.start();
            int b=0;
            for (long i = 0; i < count; i++) {
                b--;
            }
            thread.join();
            long time = System.currentTimeMillis()-start;
    
            System.out.println("concurrency :"+time+"ms,b="+b);
    
        }
    
        private static void serial(int count){
            long start= System.currentTimeMillis();
            int a=0;
            for (long i = 0; i < count; i++) {
                a+=5;
            }
            int b=0;
    
            for (long i = 0; i < count; i++) {
                b--;
            }
    
            long time = System.currentTimeMillis() - start;
    
            System.out.println("serial :"+time+"ms,b="+b+",a="+a);
        }
    
    }
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61

    在这里插入图片描述

    在Linux 2核2G操作系统下:

    在这里插入图片描述

    在这里插入图片描述

    在这里插入图片描述

    在Linux 8核16G操作系统下:

    在这里插入图片描述

    在这里插入图片描述

  • 相关阅读:
    什么是集成测试?集成测试方法有哪些?
    Git的入门详细教程
    kafka操作5
    NSSCTF-Web题目5
    [附源码]Python计算机毕业设计SSM考研信息共享博客系统(程序+LW)
    11+ chrome高级调试技巧,学会效率直接提升666%
    IPV6工作手册
    23、分布式锁
    Canal安装
    java毕业设计城市垃圾分类管理系统mybatis+源码+调试部署+系统+数据库+lw
  • 原文地址:https://blog.csdn.net/helpluozhao123/article/details/128191227