From 8cf836303290238da695bd2d1dd473f87b3b717d Mon Sep 17 00:00:00 2001 From: Kudzu Date: Wed, 6 Aug 2025 21:45:00 +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-06=2021:45:00?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .obsidian/plugins/keep-the-rhythm/data.json | 9 +++++++++ .obsidian/plugins/novel-word-count/data.json | 16 ++++++++-------- A1-Work/语言/Java/基础学习.md | 9 +++++++++ 3 files changed, 26 insertions(+), 8 deletions(-) diff --git a/.obsidian/plugins/keep-the-rhythm/data.json b/.obsidian/plugins/keep-the-rhythm/data.json index c136190..1c5efd3 100644 --- a/.obsidian/plugins/keep-the-rhythm/data.json +++ b/.obsidian/plugins/keep-the-rhythm/data.json @@ -500,6 +500,15 @@ "current": 7244 } } + }, + "2025-08-06": { + "totalDelta": 287, + "files": { + "A1-Work/语言/Java/基础学习.md": { + "initial": 7244, + "current": 7531 + } + } } } } diff --git a/.obsidian/plugins/novel-word-count/data.json b/.obsidian/plugins/novel-word-count/data.json index 023e50b..58c2951 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": 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, diff --git a/A1-Work/语言/Java/基础学习.md b/A1-Work/语言/Java/基础学习.md index 14b6a2a..5bba266 100644 --- a/A1-Work/语言/Java/基础学习.md +++ b/A1-Work/语言/Java/基础学习.md @@ -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 会扩展所有组件的尺寸以便填满可用空间。