diff --git a/.obsidian/plugins/keep-the-rhythm/data.json b/.obsidian/plugins/keep-the-rhythm/data.json index 98db593..0a51505 100644 --- a/.obsidian/plugins/keep-the-rhythm/data.json +++ b/.obsidian/plugins/keep-the-rhythm/data.json @@ -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, diff --git a/.obsidian/plugins/novel-word-count/data.json b/.obsidian/plugins/novel-word-count/data.json index c8a6151..a39bda7 100644 --- a/.obsidian/plugins/novel-word-count/data.json +++ b/.obsidian/plugins/novel-word-count/data.json @@ -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, diff --git a/A1-Work/语言/Java/基础学习.md b/A1-Work/语言/Java/基础学习.md index 8e5dc68..9e20039 100644 --- a/A1-Work/语言/Java/基础学习.md +++ b/A1-Work/语言/Java/基础学习.md @@ -545,6 +545,7 @@ classDiagram `BitSet` 用于存放一个位序列,也是个集合,但是每一个元素只有 `true` 和 `false`,对应 `0` 和 `1`,初始化值默认为 `false`。 ## 多线程 +线程的 `run` 方法不能抛出任何被检查的异常。 ### 线程状态 - New(新创建) @@ -557,6 +558,9 @@ classDiagram ![[A6-Excalidraw/线程状态|线程状态]] ### 守护线程 +唯一的用途就是为其他线程提供服务。 + +### 同步 ## JDK 特性