zoukankan      html  css  js  c++  java
  • Java8-Atomic

    
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.atomic.AtomicInteger;
    import java.util.stream.IntStream;
    
    public class Atomic1 {
    
        private static final int NUM_INCREMENTS = 1000;
    
        private static AtomicInteger atomicInt = new AtomicInteger(0);
    
        public static void main(String[] args) {
            testIncrement();
            testAccumulate();
            testUpdate();
        }
    
        private static void testUpdate() {
            atomicInt.set(0);
    
            ExecutorService executor = Executors.newFixedThreadPool(2);
    
            IntStream.range(0, NUM_INCREMENTS)
                    .forEach(i -> {
                        Runnable task = () ->
                                atomicInt.updateAndGet(n -> n + 2);
                        executor.submit(task);
                    });
    
            ConcurrentUtils.stop(executor);
    
            System.out.format("Update: %d
    ", atomicInt.get());
        }
    
        private static void testAccumulate() {
            atomicInt.set(0);
    
            ExecutorService executor = Executors.newFixedThreadPool(2);
    
            IntStream.range(0, NUM_INCREMENTS)
                    .forEach(i -> {
                        Runnable task = () ->
                                atomicInt.accumulateAndGet(i, (n, m) -> n + m);
                        executor.submit(task);
                    });
    
            ConcurrentUtils.stop(executor);
    
            System.out.format("Accumulate: %d
    ", atomicInt.get());
        }
    
        private static void testIncrement() {
            atomicInt.set(0);
    
            ExecutorService executor = Executors.newFixedThreadPool(2);
    
            IntStream.range(0, NUM_INCREMENTS)
                    .forEach(i -> executor.submit(atomicInt::incrementAndGet));
    
            ConcurrentUtils.stop(executor);
    
            System.out.format("Increment: Expected=%d; Is=%d
    ", NUM_INCREMENTS, atomicInt.get());
        }
    
    }
    
  • 相关阅读:
    单元测试笔记
    centos7安装rabbitmq
    spring cache之redis使用示例
    ObjectMapper序列化时间
    安装alertmanager
    prometheus安装
    Ribbon配置随访问策略
    优化if..else代码的两种方式
    spring bean的生命周期
    idea热部署
  • 原文地址:https://www.cnblogs.com/bilaisheng/p/10210901.html
Copyright © 2011-2022 走看看