笔记备份:2025-08-21 22:18:44

This commit is contained in:
2025-08-21 22:18:44 +08:00
parent ed8d236b13
commit 0c5d79c60e
3 changed files with 17 additions and 13 deletions

View File

@@ -538,11 +538,11 @@
}
},
"2025-08-21": {
"totalDelta": 14205,
"totalDelta": 14256,
"files": {
"A1-Work/语言/Java/基础学习.md": {
"initial": 10752,
"current": 12250
"current": 12301
},
"A6-Excalidraw/线程状态.md": {
"initial": 3237,

View File

@@ -463,20 +463,20 @@
"isCountable": true,
"targetNodeType": "file",
"noteCount": 1,
"wordCount": 3919,
"wordCount": 3941,
"wordCountTowardGoal": 0,
"wordGoal": null,
"pageCount": 13.063333333333333,
"characterCount": 14041,
"nonWhitespaceCharacterCount": 10814,
"newlineCount": 574,
"readingTimeInMinutes": 9.01033962264151,
"pageCount": 13.136666666666667,
"characterCount": 14107,
"nonWhitespaceCharacterCount": 10873,
"newlineCount": 579,
"readingTimeInMinutes": 9.06143396226415,
"linkCount": 0,
"embedCount": 1,
"embedCount": 2,
"aliases": null,
"createdDate": 1753961160249,
"modifiedDate": 1755785554609,
"sizeInBytes": 21153,
"modifiedDate": 1755785864301,
"sizeInBytes": 21259,
"sessionStart": {
"noteCount": 1,
"pageCount": 2.1566666666666667,
@@ -529,8 +529,8 @@
"embedCount": 0,
"aliases": [],
"createdDate": 1755785395569,
"modifiedDate": 1755785514051,
"sizeInBytes": 3215,
"modifiedDate": 1755785760910,
"sizeInBytes": 16130,
"sessionStart": {
"noteCount": 0,
"pageCount": 0,

View File

@@ -545,6 +545,7 @@ classDiagram
`BitSet` 用于存放一个位序列,也是个集合,但是每一个元素只有 `true``false`,对应 `0``1`,初始化值默认为 `false`
## 多线程
线程的 `run` 方法不能抛出任何被检查的异常。
### 线程状态
- New新创建
@@ -557,6 +558,9 @@ classDiagram
![[A6-Excalidraw/线程状态|线程状态]]
### 守护线程
唯一的用途就是为其他线程提供服务。
### 同步
## JDK 特性