使用AtomicInteger原子类代替i++线程安全操作

Posted tangquanbin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用AtomicInteger原子类代替i++线程安全操作相关的知识,希望对你有一定的参考价值。

Java中自增自减操作不具原子性,在多线程环境下是线程不安全的,可以使用使用AtomicInteger原子类代替i++,i--操作完成多线程线程安全操作。

下面是等于i++多线程的自增操作代码:

public class AtomicIntegerTest {
    private static AtomicInteger count = new AtomicInteger(0);

    public static void add() {
        for (int i = 0; i < 10000; i++) {
            System.out.println(count.incrementAndGet());
        }
    }

    public static void main(String[] args) {
        for (int i = 0; i < 8; i++) {
            Thread thread = new Thread(new Runnable() {
                @Override
                public void run() {
                    AtomicIntegerTest.add();
                }
            });
            thread.start();
        }
    }
}

 incrementAndGet()方法源码(JDK1.8):

    /**
     * Atomically increments by one the current value.
     *
     * @return the updated value
     */
    public final int incrementAndGet() {
        return unsafe.getAndAddInt(this, valueOffset, 1) + 1;
    }

  

 

以上是关于使用AtomicInteger原子类代替i++线程安全操作的主要内容,如果未能解决你的问题,请参考以下文章

Java原子操作类AtomicInteger应用场景

2.3.5使用原子类进行i++操作

java笔记java中的AtomicInteger原子操作类

(十七)AtomicInteger原子类的介绍和使用

多线程(原子类-AtomicInteger)

AtomicInteger