摘要:
1. AtomicLong是基本原子类中的一种 AtomicLong是对长整形进行原子操作。 1.1 AtomicLong类的函数列表 // 构造函数 AtomicLong() // 创建值为initialValue的AtomicLong对象 AtomicLong(long initialValue 阅读全文
摘要:
根据修改的数据类型,可以将JUC包中的原子操作类可以分为4种,分别是: 1. 基本类型: AtomicInteger, AtomicLong, AtomicBoolean ;2. 数组类型: AtomicIntegerArray, AtomicLongArray, AtomicReferenceAr 阅读全文