File tree 2 files changed +5
-3
lines changed
cs-basics/operating-system
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -225,9 +225,11 @@ Linux 文件系统的结构层次鲜明,就像一棵倒立的树,最顶层
225
225
226
226
## 4. Linux 基本命令
227
227
228
- 下面只是给出了一些比较常用的命令。推荐一个 Linux 命令快查网站,非常不错,大家如果遗忘某些命令或者对某些命令不理解都可以在这里得到解决。
228
+ 下面只是给出了一些比较常用的命令。
229
229
230
- Linux 命令大全:[ http://man.linuxde.net/ ] ( http://man.linuxde.net/ )
230
+ 推荐一个 Linux 命令快查网站,非常不错,大家如果遗忘某些命令或者对某些命令不理解都可以在这里得到解决。Linux 命令在线速查手册:https://www.w3xue.com/manual/linux/ 。
231
+
232
+ 另外,[ shell.how] ( https://www.shell.how/ ) 这个网站可以用来解释常见命令的意思,对你学习 Linux 基本命令以及其他常用命令(如 Git、NPM)。
231
233
232
234
### 4.1. 目录切换命令
233
235
Original file line number Diff line number Diff line change 20
20
21
21
### Checked Exception 和 Unchecked Exception 有什么区别?
22
22
23
- ** Checked Exception** 即 受检查异常 ,Java 代码在编译过程中,如果受检查异常没有被 ` catch ` / ` throw ` 处理的话 ,就没办法通过编译 。
23
+ ** Checked Exception** 即 受检查异常 ,Java 代码在编译过程中,如果受检查异常没有被 ` catch ` 或者 ` throws ` 关键字处理的话 ,就没办法通过编译。
24
24
25
25
比如下面这段 IO 操作的代码:
26
26
You can’t perform that action at this time.
0 commit comments