java.util.concurrent.atomic包的常用类

java.util.concurrent.atomic包主要的常用类包括:AtomicBoolean、AtomicInteger、AtomicLong等。该工具包支持在单个变量上解除锁定的线程安全编程。

 

1、AtomicBoolean的常用方法

AtomicBoolean b = new AtomicBoolean(false);

b.compareAndSet(false, true); //将false改值为true
b.get(); //获取当前布尔值
b.getAndSet(true); //获取当前布尔值,并改值为true
b.set(true); //设置值为true

 

2、AtomicInteger的常用方法

AtomicInteger i = new AtomicInteger(0);

i.intValue(); //返回int型值
i.floatValue(); //返回float型值
i.doubleValue();
i.shortValue();
i.longValue();
i.get(); //获取当前值
i.set(1); //设置新值
i.getAndAdd(1); //获取当前值后,再为当前值增1
i.getAndSet(1); //获取当前值后,再将当前值设为1
i.getAndIncrement(); //获取值后,值自增1
i.getAndDecrement(); //获取值后,值自减1
i.compareAndSet(0, 1); //将0值改为1
i.addAndGet(2); //当前值增2后,再返回当前值
i.incrementAndGet(); //值自增1后,再返回当前值
i.decrementAndGet(); //值自减1后,再返回当前值

 

3、AtomicLong

     类似AtomicInteger

 

你可能感兴趣的:(Concurrent)