1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

错别字修改

This commit is contained in:
Verne.Chung 2022-03-22 09:57:37 +08:00 committed by GitHub
parent 26afcc7706
commit 603992ebfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 的使用