笔记备份:2025-08-06 21:45:00

This commit is contained in:
2025-08-06 21:45:00 +08:00
parent 11ed1a0bb3
commit 8cf8363032
3 changed files with 26 additions and 8 deletions

View File

@@ -500,6 +500,15 @@
"current": 7244
}
}
},
"2025-08-06": {
"totalDelta": 287,
"files": {
"A1-Work/语言/Java/基础学习.md": {
"initial": 7244,
"current": 7531
}
}
}
}
}

View File

@@ -463,20 +463,20 @@
"isCountable": true,
"targetNodeType": "file",
"noteCount": 1,
"wordCount": 2346,
"wordCount": 2400,
"wordCountTowardGoal": 0,
"wordGoal": null,
"pageCount": 7.82,
"characterCount": 8012,
"nonWhitespaceCharacterCount": 6371,
"newlineCount": 289,
"readingTimeInMinutes": 5.243584905660377,
"pageCount": 8,
"characterCount": 8150,
"nonWhitespaceCharacterCount": 6495,
"newlineCount": 294,
"readingTimeInMinutes": 5.360452830188679,
"linkCount": 0,
"embedCount": 1,
"aliases": null,
"createdDate": 1753961160249,
"modifiedDate": 1754399077587,
"sizeInBytes": 12434,
"modifiedDate": 1754408476632,
"sizeInBytes": 12682,
"sessionStart": {
"noteCount": 1,
"pageCount": 2.1566666666666667,

View File

@@ -281,6 +281,15 @@ AWT 分为低级事件和语义事件,常用语义事件:
### 布局
默认的布局FlowLayout (流式布局)
```cardlink
url: https://blog.csdn.net/kagurawill/article/details/106296866
title: "swing的几种布局_swing 布局-CSDN博客"
description: "文章浏览阅读1.7w次点赞25次收藏142次。本文详细介绍了Java Swing中的八种布局管理器包括边框布局、流式布局、卡片布局、网格布局、网格包布局、盒布局、绝对布局和弹簧布局。每种布局都附有详细的解释和示例代码帮助读者理解和掌握Swing布局管理器的使用。"
host: blog.csdn.net
```
#### BorderLayout
该布局分为 `CENTER``NORTHE``SOUTH``EAST``WEST`,五个位置,与 FlowLayout 不同的是 BorderLayout 会扩展所有组件的尺寸以便填满可用空间。