Merge pull request #323 from Gsllchb/patch-2

fix typo
This commit is contained in:
郑永川 2018-07-14 20:30:39 +08:00 committed by GitHub
commit 7138c76197
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1112,7 +1112,7 @@ Reflection is powerful, but should not be used indiscriminately. If it is possib
Throwable 可以用来表示任何可以作为异常抛出的类,分为两种: **Error****Exception**。其中 Error 用来表示 JVM 无法处理的错误Exception 分为两种:
- **受检异常** :需要用 try...catch... 语句捕获并进行处理,并且可以从异常中恢复;
- **非受检异常** :是程序运行时错误,例如除 0 会引发 Arithmetic Exception此时程序溃并且无法恢复。
- **非受检异常** :是程序运行时错误,例如除 0 会引发 Arithmetic Exception此时程序溃并且无法恢复。
<div align="center"> <img src="../pics//PPjwP.png" width="600"/> </div><br>