mirror of
https://github.com/Snailclimb/JavaGuide
synced 2025-06-20 22:17:09 +08:00
错别字修改
This commit is contained in:
parent
26afcc7706
commit
603992ebfa
@ -787,7 +787,7 @@ public void execute(Runnable command) {
|
|||||||
|
|
||||||
使用原子的方式更新基本类型
|
使用原子的方式更新基本类型
|
||||||
|
|
||||||
- `AtomicInteger`:整形原子类
|
- `AtomicInteger`:整型原子类
|
||||||
- `AtomicLong`:长整型原子类
|
- `AtomicLong`:长整型原子类
|
||||||
- `AtomicBoolean`:布尔型原子类
|
- `AtomicBoolean`:布尔型原子类
|
||||||
|
|
||||||
@ -795,8 +795,8 @@ public void execute(Runnable command) {
|
|||||||
|
|
||||||
使用原子的方式更新数组里的某个元素
|
使用原子的方式更新数组里的某个元素
|
||||||
|
|
||||||
- `AtomicIntegerArray`:整形数组原子类
|
- `AtomicIntegerArray`:整型数组原子类
|
||||||
- `AtomicLongArray`:长整形数组原子类
|
- `AtomicLongArray`:长整型数组原子类
|
||||||
- `AtomicReferenceArray`:引用类型数组原子类
|
- `AtomicReferenceArray`:引用类型数组原子类
|
||||||
|
|
||||||
**引用类型**
|
**引用类型**
|
||||||
@ -807,8 +807,8 @@ public void execute(Runnable command) {
|
|||||||
|
|
||||||
**对象的属性修改类型**
|
**对象的属性修改类型**
|
||||||
|
|
||||||
- `AtomicIntegerFieldUpdater`:原子更新整形字段的更新器
|
- `AtomicIntegerFieldUpdater`:原子更新整型字段的更新器
|
||||||
- `AtomicLongFieldUpdater`:原子更新长整形字段的更新器
|
- `AtomicLongFieldUpdater`:原子更新长整型字段的更新器
|
||||||
- `AtomicReferenceFieldUpdater`:原子更新引用类型字段的更新器
|
- `AtomicReferenceFieldUpdater`:原子更新引用类型字段的更新器
|
||||||
|
|
||||||
### 5.3. 讲讲 AtomicInteger 的使用
|
### 5.3. 讲讲 AtomicInteger 的使用
|
||||||
|
Loading…
x
Reference in New Issue
Block a user