笔记备份:2025-08-19 23:31:46

This commit is contained in:
2025-08-19 23:31:46 +08:00
parent 31d08bffce
commit cc7dd6f650
3 changed files with 17 additions and 10 deletions

View File

@@ -520,11 +520,11 @@
}
},
"2025-08-19": {
"totalDelta": 1042,
"totalDelta": 1150,
"files": {
"A1-Work/语言/Java/基础学习.md": {
"initial": 8304,
"current": 9346
"current": 9454
}
}
}

View File

@@ -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,

View File

@@ -413,6 +413,13 @@ ArrayAlg.getMiddle("Hello", 0, null);
```
通过报错来分析。
### 类型变量的限定
将类型变量限定到一个范围:
```Java
// 将 T 限定为 Object 的子类
public static <T extends Object> T min(T... a);
```
## JDK 特性
### JDK7