Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b46f265

Browse filesBrowse files
committed
[docs add] io 三部曲
1 parent 1330f3f commit b46f265
Copy full SHA for b46f265

File tree

Expand file treeCollapse file tree

5 files changed

+879
-3
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

5 files changed

+879
-3
lines changed
Open diff view settings
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
+6-1Lines changed: 6 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
* [泛型&序列化详解](docs/java/basis/generics-and-wildcards.md)
5757
* [反射机制详解](docs/java/basis/reflection.md)
5858
* [Java 代理模式详解](docs/java/basis/proxy.md)
59-
* [IO 模型详解](docs/java/basis/io.md)
6059
* [BigDecimal 详解](docs/java/basis/bigdecimal.md)
6160

6261
### 集合
@@ -73,6 +72,12 @@
7372
* [HashMap(JDK1.8)源码+底层数据结构分析](docs/java/collection/hashmap-source-code.md)
7473
* [ConcurrentHashMap 源码+底层数据结构分析](docs/java/collection/concurrent-hash-map-source-code.md)
7574

75+
### IO
76+
77+
* [IO 基础知识总结](docs/java/io/io-basis.md)
78+
* [IO 设计模式总结](docs/java/io/io-design-patterns.md)
79+
* [IO 模型详解](docs/java/io/io-model.md)
80+
7681
### 并发
7782

7883
**知识点/面试题总结** : (必看 :+1:)
Collapse file

‎docs/.vuepress/sidebar.ts‎

Copy file name to clipboardExpand all lines: docs/.vuepress/sidebar.ts
+8-1Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ export const sidebarConfig = defineSidebarConfig({
5454
"generics-and-wildcards",
5555
"reflection",
5656
"proxy",
57-
"io",
5857
"bigdecimal",
5958
],
6059
},
@@ -81,6 +80,14 @@ export const sidebarConfig = defineSidebarConfig({
8180
},
8281
],
8382
},
83+
84+
{
85+
text: "IO",
86+
prefix: "io/",
87+
icon: "code",
88+
collapsable: true,
89+
children: ["io-basis", "io-design-patterns", "io-model"],
90+
},
8491
{
8592
text: "并发编程",
8693
prefix: "concurrent/",

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.