From 88b4fc87ef3cc411f0d3cd5a0a6febc3114c8c37 Mon Sep 17 00:00:00 2001 From: Gsllchb Date: Sat, 14 Jul 2018 15:45:43 +0800 Subject: [PATCH] fix typo --- notes/Java 基础.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/Java 基础.md b/notes/Java 基础.md index 842ebd84..e5671d34 100644 --- a/notes/Java 基础.md +++ b/notes/Java 基础.md @@ -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,此时程序崩溃并且无法恢复。