Skip to content

Commit ecfe12c

Browse files
authored
Update Java基础知识.md
根据上下文语境 应该将 “除了`RuntimeException`及其子类以外,其他的`Exception`类及其子类都属于检查异常” 修改为 “除了`RuntimeException`及其子类以外,其他的`Exception`类及其子类都属于受检查异常”
1 parent 226600c commit ecfe12c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/basis/Java基础知识.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1221,7 +1221,7 @@ Java 代码在编译过程中,如果受检查异常没有被 `catch`/`throw`
12211221
12221222
![check-exception](https://guide-blog-images.oss-cn-shenzhen.aliyuncs.com/2020-12/check-exception.png)
12231223
1224-
除了`RuntimeException`及其子类以外,其他的`Exception`类及其子类都属于检查异常 。常见的受检查异常有: IO 相关的异常、`ClassNotFoundException` 、`SQLException`...
1224+
除了`RuntimeException`及其子类以外,其他的`Exception`类及其子类都属于受检查异常 。常见的受检查异常有: IO 相关的异常、`ClassNotFoundException` 、`SQLException`...
12251225
12261226
**不受检查异常**
12271227

0 commit comments

Comments
 (0)