From ab764ebd69f45a0acc875d5c88179dd3d966e3bd Mon Sep 17 00:00:00 2001 From: sjsdfg <736777445@qq.com> Date: Fri, 5 Apr 2019 16:12:57 +0800 Subject: [PATCH] =?UTF-8?q?update=209.=20=E4=BD=BF=E7=94=A8=20try-with-res?= =?UTF-8?q?ources=20=E8=AF=AD=E5=8F=A5=E6=9B=BF=E4=BB=A3=20try-finally=20?= =?UTF-8?q?=E8=AF=AD=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/notes/09. 使用try-with-resources语句替代try-finally语句.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/09. 使用try-with-resources语句替代try-finally语句.md b/docs/notes/09. 使用try-with-resources语句替代try-finally语句.md index 2630529..a2a5e31 100644 --- a/docs/notes/09. 使用try-with-resources语句替代try-finally语句.md +++ b/docs/notes/09. 使用try-with-resources语句替代try-finally语句.md @@ -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 语句实际上是不可能的。