笔记备份:2025-08-20 22:07:36

This commit is contained in:
2025-08-20 22:07:36 +08:00
parent 9d8d2e14d7
commit f4b94badcf
3 changed files with 12 additions and 10 deletions

View File

@@ -529,11 +529,11 @@
}
},
"2025-08-20": {
"totalDelta": 916,
"totalDelta": 964,
"files": {
"A1-Work/语言/Java/基础学习.md": {
"initial": 9708,
"current": 10624
"current": 10672
}
}
}

View File

@@ -463,20 +463,20 @@
"isCountable": true,
"targetNodeType": "file",
"noteCount": 1,
"wordCount": 3442,
"wordCount": 3512,
"wordCountTowardGoal": 0,
"wordGoal": null,
"pageCount": 11.473333333333333,
"characterCount": 11855,
"nonWhitespaceCharacterCount": 9336,
"newlineCount": 496,
"readingTimeInMinutes": 7.8984905660377365,
"pageCount": 11.706666666666667,
"characterCount": 12016,
"nonWhitespaceCharacterCount": 9480,
"newlineCount": 501,
"readingTimeInMinutes": 8.05445283018868,
"linkCount": 0,
"embedCount": 1,
"aliases": null,
"createdDate": 1753961160249,
"modifiedDate": 1755696638536,
"sizeInBytes": 18139,
"modifiedDate": 1755698788089,
"sizeInBytes": 18438,
"sessionStart": {
"noteCount": 1,
"pageCount": 2.1566666666666667,

View File

@@ -479,6 +479,8 @@ public class Test {
### 通配符类型
长这样:`<? extends Object>`,和 `<T extends Object>` 很像,还有一个 `<? super Object>``extends` 表示该类的子类,`super` 表示该类的父类。
直观的讲,带有父类型限定的通配符可以向泛型对象写入,带有子类型限定的通配符可以从泛型对象读取。
## JDK 特性
### JDK7