From 48670347b9c5031166a9476ba684c017b64a5983 Mon Sep 17 00:00:00 2001 From: Emily Gong Date: Thu, 3 Jan 2019 10:01:23 -0800 Subject: [PATCH] Update translation (#25780) --- guide/chinese/java/finally-keyword/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guide/chinese/java/finally-keyword/index.md b/guide/chinese/java/finally-keyword/index.md index 817c11446d..a5f625b701 100644 --- a/guide/chinese/java/finally-keyword/index.md +++ b/guide/chinese/java/finally-keyword/index.md @@ -10,13 +10,13 @@ localeTitle: 最后 ```java try { - // Normal execution path + // 正常代码执行 throw new EmptyStackException(); } catch (ExampleException ee) { - // deal with the ExampleException + // 对 ExampleException 进行处理 } finally { - // This optional section is executed upon termination of any of the try or catch blocks above, - // except when System.exit() is called in "try" or "catch" blocks; + // 这块不是必须有的,在以上try或catch执行完最后就会执行, + // 除非在"try" 或 "catch" 块有 System.exit(); } -``` \ No newline at end of file +```