多线程编程:并发加/减操作优化, LongAdder原理,与AtomicLong比较


多线程修改同一个整数变量的值时, 可以使用 java的原子类 AtomicLong等. 但通过分析 ConcurrentHashMap, 发现还有一种通过 空间时间的优化措施 java.util.concurrent.atomic.LongAdder

先上结论

结论

32线程百万次自增操作 耗时
AtomicLong 626毫秒
LongAdder 83毫秒

测试过程

以下是AtomicLongLongAdder运行测试代码 (32个线程, 每个线程执行100万次自增操作)
AtomicLong的测试过程

public static void atomicLong() throws Throwable {
   
        final int threadCount = 32;
        final AtomicLong longValue = new AtomicLong();
        Thread[] threads = new Thread[threadCount];
        for(int i=0; i<threadCount; i++){
   
            threads[i] = new Thread(new Runnable() {
   
                @Override
                public void run() {
   
                    for(int i=0; i<100*10000; i++){
   
                        longValue.incrementAndGet();
                    }
                }
            });
        }
        long time = System.nanoTime();
        for(int i=0; i<threadCount; i++){
   
            threads[i].start();
        }
        for(int i=0; i<threadCount; i++){
   
            threads[i].join();
        }
        logger.info("value: {}, time: {}", longValue.get(), System.nanoTime() - time);
    }

多次执行结果
625396610
626169232
611343737
614837069
633110850
606656120

LongAdder的测试过程

    public static void longAdder() throws Throwable {
   
        final int threadCount = 32;
        final LongAdder longAdder = new LongAdder();
        Thread[] threads = new Thread[threadCount];
        for(int i=0; i<threadCount; i
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值