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());
        }
    
    }
    
  • 相关阅读:
    WebService
    JavaMail
    ssh框架整合
    CSS3初步
    SpringMVC 文件上传及下载
    Java多线程
    SpringMVC 数据校验
    初始化参数绑定——日期格式
    SpringMVC入门
    Quartz
  • 原文地址:https://www.cnblogs.com/bilaisheng/p/10210901.html
Copyright © 2011-2022 走看看