vault backup: 2023-03-18 12:50:25

This commit is contained in:
2023-03-18 12:50:25 +08:00
parent 9531508b6f
commit cfa792ba67
2 changed files with 23 additions and 5 deletions

View File

@@ -60,7 +60,7 @@
} }
} }
], ],
"currentTab": 1 "currentTab": 3
} }
], ],
"direction": "vertical" "direction": "vertical"
@@ -118,7 +118,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "00. Inbox/01. TODO.md", "file": "04. Programming/Kotlin/AtomicBoolean.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@@ -154,7 +154,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "00. Inbox/01. TODO.md" "file": "04. Programming/Kotlin/AtomicBoolean.md"
} }
} }
} }
@@ -180,11 +180,11 @@
"periodic-notes:Open today": false "periodic-notes:Open today": false
} }
}, },
"active": "3b4577823cedf427", "active": "0c4cc0216ea83049",
"lastOpenFiles": [ "lastOpenFiles": [
"00. Inbox/01. TODO.md",
"04. Programming/Kotlin/AtomicBoolean.md", "04. Programming/Kotlin/AtomicBoolean.md",
"04. Programming/Kotlin/run, let, with, also 和 apply.md", "04. Programming/Kotlin/run, let, with, also 和 apply.md",
"00. Inbox/01. TODO.md",
"05. 資料收集/軟體工具/git/tag.md", "05. 資料收集/軟體工具/git/tag.md",
"05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md", "05. 資料收集/讀書筆記/20230206 - 卡片盒筆記.md",
"01. 個人/00. Informations/Datas.md", "01. 個人/00. Informations/Datas.md",

View File

@@ -1 +1,19 @@
[AtomicBoolean  |  Android Developers](https://developer.android.com/reference/java/util/concurrent/atomic/AtomicBoolean)
## 初始化 ## 初始化
```kotlin
val init = AtomicBoolean(false)
or
val inti = AtomicBoolean() // Default false
```
## read/write
`get()`取值,用`set()`設值
例:
```kotlin
if (init.get()) { ... } // 如果 init 是 true 的話
init.set(true) // 將 init 設為 true
```
## 其他function