Skip to content

Commit 0e02f4d

Browse files
committed
2 parents 2cc2716 + 950823c commit 0e02f4d

2 files changed

Lines changed: 26 additions & 11 deletions

File tree

README.md

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,20 @@
151151
<details>
152152
<summary>TODO LIST</summary>
153153

154-
- HTML(5)
154+
- HTML5
155155

156-
- CSS(3)
156+
- CSS3
157157

158-
sass、scss、stylus
158+
- CSS 预处理
159+
160+
- sass(scss)
161+
- less
162+
- stylus
159163

160164
- CSS 框架
161165

162-
BootStarp、LayUI
166+
- BootStarp
167+
- LayUI
163168

164169
- JavaScript
165170

@@ -168,26 +173,36 @@
168173
- JavaScript 框架
169174

170175
- Vue
171-
- React
176+
- React
172177
- Angular
173178
- jQuery
174179

175180
- Node
176181

177182
常用 api、对象池、异常处理、进程通信、高并发
178183

179-
- 静态编译
180-
- Flow
184+
- 静态类型检查
185+
181186
- TypeScript
187+
- Flow
188+
189+
- 构建/打包工具
182190

183-
- 打包工具
184191
- webpack
185-
- glup
192+
- gulp
186193
- rollup
187194

188-
- 工具
195+
- 包管理工具
196+
189197
- npm
190198
- yarn
199+
200+
- 服务端渲染
201+
202+
- koa2
203+
- express
204+
- nuxt
205+
- next
191206

192207
</details>
193208

notes/JavaArchitecture/02-Java集合框架.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1814,7 +1814,7 @@ List list = Arrays.asList(1,2,3);
18141814
18151815
  把访问逻辑从不同类型的集合类中抽取出来,从而避免向外部暴露集合的内部结构。
18161816
1817-
  **迭代器模式**:就是提供一种方法对一个容器对象中的各个元素进行访问,而又不暴露该对象容器的内部细
1817+
  **迭代器模式**:就是提供一种方法对一个容器对象中的各个元素进行访问,而又不暴露该对象容器的内部细节
18181818
18191819
```java
18201820
public static void main(String[] args) {

0 commit comments

Comments
 (0)