Skip to content

Commit b46f265

Browse files
committed
[docs add] io 三部曲
1 parent 1330f3f commit b46f265

File tree

5 files changed

+879
-3
lines changed

5 files changed

+879
-3
lines changed

README.md

+6-1
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:)

docs/.vuepress/sidebar.ts

+8-1
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)