mirror of
https://github.com/sjsdfg/effective-java-3rd-chinese.git
synced 2025-01-26 20:30:36 +08:00
update 9. 使用 try-with-resources 语句替代 try-finally 语句
This commit is contained in:
parent
002289bb59
commit
ab764ebd69
@ -86,6 +86,6 @@ static String firstLineOfFile(String path, String defaultVal) {
|
||||
}
|
||||
```
|
||||
|
||||
结论明确:在处理必须关闭的资源时,使用 try-with-resources 语句替代 try-finally 语句。 生成的代码更简洁,更清晰,并且生成的异常更有用。 try-with-resources 语句在编写必须关闭资源的代码时会更容易,也不会出错,而使用 try-finally 语句实际上是不可能的。
|
||||
结论很明确:在处理必须关闭的资源时,使用 try-with-resources 语句替代 try-finally 语句。 生成的代码更简洁,更清晰,并且生成的异常更有用。 try-with-resources 语句在编写必须关闭资源的代码时会更容易,也不会出错,而使用 try-finally 语句实际上是不可能的。
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user