原子操作

当在多线程情况下,同时更新一个共享变量,由于我们前面讲过的原子性问题,可能得不到预期的结果。如果要达 到期望的结果,可以通过synchronized来加锁解决,因为synchronized会保证多线程对共享变量的访问进行排 队。

在Java5以后,提供了原子操作类,这些原子操作类提供了一种简单、高效以及线程安全的更新操作。而由于变量 的类型很多,所以Atomic一共提供了12个类分别对应四种类型的原子更新操作,基本类型、数组类型、引用类 型、属性类型

基本类型对应:AtomicBoolean、AtomicInteger、AtomicLong

数组类型对应:AtomicIntegerArray、AtomicLongArray、AtomicReferenceArray

引用类型对应:AtomicReference、AtomicReferenceFieldUpdater、AtomicMarkableReference

字段类型对应:AtomicIntegerFieldUpdater、AtomicLongFieldUpdater、AtomicStampedReference

package com.example.demo.morethread;

import java.util.concurrent.atomic.AtomicInteger;

public class AtomicTest {
    private static AtomicInteger atomicInteger=new AtomicInteger(0);
    private static int num=0;

    public static void inc(){
        try {
            System.out.println(Thread.currentThread().getName()+":线程开始");
            Thread.sleep(1);
            atomicInteger.getAndIncrement();
            System.out.println(Thread.currentThread().getName()+":"+atomicInteger.get());
            System.out.println(Thread.currentThread().getName()+":线程结束");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
    public static void inc1(){
        try {
            System.out.println(Thread.currentThread().getName()+":线程开始");
            Thread.sleep(1);
            num++;
            System.out.println(Thread.currentThread().getName()+":"+num);
            System.out.println(Thread.currentThread().getName()+":线程结束");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) throws InterruptedException {
        for (int i=0;i<1000;i++){
            new Thread(()->{AtomicTest.inc();},"thread"+i).start();
        }
        Thread.sleep(4000);
        System.out.println(Thread.currentThread().getName()+":"+atomicInteger.get());

//        for (int i=0;i<1000;i++){
//            new Thread(()->{AtomicTest.inc1();},"thread"+i).start();
//        }
//        Thread.sleep(4000);
//        System.out.println(Thread.currentThread().getName()+":"+num);
    }
}

运行结果如下:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值