From cc7dd6f650d15c05ce914eb0140351f13c856023 Mon Sep 17 00:00:00 2001 From: Kudzu Date: Tue, 19 Aug 2025 23:31:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=94=E8=AE=B0=E5=A4=87=E4=BB=BD=EF=BC=9A20?= =?UTF-8?q?25-08-19=2023:31:46?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .obsidian/plugins/keep-the-rhythm/data.json | 4 ++-- .obsidian/plugins/novel-word-count/data.json | 16 ++++++++-------- A1-Work/语言/Java/基础学习.md | 7 +++++++ 3 files changed, 17 insertions(+), 10 deletions(-) diff --git a/.obsidian/plugins/keep-the-rhythm/data.json b/.obsidian/plugins/keep-the-rhythm/data.json index a57f171..75bbae4 100644 --- a/.obsidian/plugins/keep-the-rhythm/data.json +++ b/.obsidian/plugins/keep-the-rhythm/data.json @@ -520,11 +520,11 @@ } }, "2025-08-19": { - "totalDelta": 1042, + "totalDelta": 1150, "files": { "A1-Work/语言/Java/基础学习.md": { "initial": 8304, - "current": 9346 + "current": 9454 } } } diff --git a/.obsidian/plugins/novel-word-count/data.json b/.obsidian/plugins/novel-word-count/data.json index 2581694..68a2a3a 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": 2998, + "wordCount": 3070, "wordCountTowardGoal": 0, "wordGoal": null, - "pageCount": 9.993333333333334, - "characterCount": 10112, - "nonWhitespaceCharacterCount": 8098, - "newlineCount": 412, - "readingTimeInMinutes": 6.810075471698114, + "pageCount": 10.233333333333333, + "characterCount": 10406, + "nonWhitespaceCharacterCount": 8339, + "newlineCount": 433, + "readingTimeInMinutes": 6.986, "linkCount": 0, "embedCount": 1, "aliases": null, "createdDate": 1753961160249, - "modifiedDate": 1755616597483, - "sizeInBytes": 15676, + "modifiedDate": 1755617262743, + "sizeInBytes": 16090, "sessionStart": { "noteCount": 1, "pageCount": 2.1566666666666667, diff --git a/A1-Work/语言/Java/基础学习.md b/A1-Work/语言/Java/基础学习.md index 589c826..ca6418c 100644 --- a/A1-Work/语言/Java/基础学习.md +++ b/A1-Work/语言/Java/基础学习.md @@ -413,6 +413,13 @@ ArrayAlg.getMiddle("Hello", 0, null); ``` 通过报错来分析。 +### 类型变量的限定 +将类型变量限定到一个范围: +```Java +// 将 T 限定为 Object 的子类 +public static T min(T... a); +``` + ## JDK 特性 ### JDK7