程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> 解析Java finally的神秘面紗(1)

解析Java finally的神秘面紗(1)

編輯:關於JAVA

問題分析

首先來問大家一個問題:finally 語句塊一定會執行嗎?
很多人都認為 finally 語句塊是肯定要執行的,其中也包括一些很有經驗的 Java 程序員。可惜並不像大多人所認為的那樣,對於這個問題,答案當然是否定的,我們先來看下面這個例子。
清單 1.

  1. public class Test {
  2. public static void main(String[] args) {
  3. System.out
  4. .println("return value of test(): " + test
  5. ());
  6. }
  7. public static int test() {
  8. int i = 1;
  9. // if(i == 1)
  10. // return 0;
  11. System.out
  12. .println("the previous statement of try block");
  13. i = i / 0;
  14. try {
  15. System.out
  16. .println("try block");
  17. return i;
  18. }finally {
  19. System.out
  20. .println("finally block");
  21. }
  22. }
  23. }

清單 1 的執行結果如下:

the previous statement of try block
Exception in thread "main" java.lang.ArithmeticException: / by zero
at com.bj.charlie.Test.test(Test.java:15)
at com.bj.charlIE.Test.main(Test.Java:6) 

另外,如果去掉上例中被注釋的兩條語句前的注釋符,執行結果則是:

  1. return value of test(): 0

在以上兩種情況下,finally 語句塊都沒有執行,說明什麼問題呢?只有與 finally 相對應的 try 語句塊得到執行的情況下,finally 語句塊才會執行。以上兩種情況,都是在 try 語句塊之前返回(return)或者拋出異常,所以 try 對應的 finally 語句塊沒有執行。

那好,即使與 finally 相對應的 try 語句塊得到執行的情況下,finally 語句塊一定會執行嗎?不好意思,這次可能又讓大家失望了,答案仍然是否定的。請看下面這個例子(清單 2)。

清單 2.

  1. public class Test {
  2. public static void main(String[] args) {
  3. System.out
  4. .println("return value of test(): " + test
  5. ());
  6. }
  7. public static int test() {
  8. int i = 1;
  9. try {
  10. System.out
  11. .println("try block");
  12. System.exit
  13. (0);
  14. return i;
  15. }finally {
  16. System.out
  17. .println("finally block");
  18. }
  19. }
  20. }

清單 2 的執行結果如下:

try block 

finally 語句塊還是沒有執行,為什麼呢?因為我們在 try 語句塊中執行了 System.exit (0) 語句,終止了 Java 虛擬機的運行。那有人說了,在一般的 Java 應用中基本上是不會調用這個 System.exit(0) 方法的。OK !沒有問題,我們不調用 System.exit(0) 這個方法,那麼 finally 語句塊就一定會執行嗎?

再一次讓大家失望了,答案還是否定的。當一個線程在執行 try 語句塊或者 catch 語句塊時被打斷(interrupted)或者被終止(killed),與其相對應的 finally 語句塊可能不會執行。還有更極端的情況,就是在線程運行 try 語句塊或者 catch 語句塊時,突然死機或者斷電,finally 語句塊肯定不會執行了。可能有人認為死機、斷電這些理由有些強詞奪理,沒有關系,我們只是為了說明這個問題。

finally 語句剖析

說了這麼多,還是讓我們拿出些有說服力的證據吧!還有什麼證據比官方的文檔更具說服力呢?讓我們來看看官方網站上的《The Java Tutorials》中是怎樣來描述 finally 語句塊的吧!

以下位於 **** 之間的內容原封不動的摘自於《 The Java Tutorials 》文檔。

*******************************************************************************
The finally Block

The finally block always executes when the try block exits. This ensures that the finally block is executed even if an unexpected exception occurs. But finally is useful for more than just exception handling — it allows the programmer to avoid having cleanup code accidentally bypassed by a return, continue, or break. Putting cleanup code in a finally block is always a good practice, even when no exceptions are anticipated.

Note: If the JVM exits while the try or catch code is being executed, then the finally block may not execute. Likewise, if the thread executing the try or catch code is interrupted or killed, the finally block may not execute even though the application as a whole continues.
*******************************************************************************

請仔細閱讀並認真體會一下以上兩段英文,當你真正的理解了這兩段英文的確切含義,你就可以非常自信的來回答“finally 語句塊是否一定會執行?”這樣的問題。看來,大多時候,並不是 Java 語言本身有多麼高深,而是我們忽略了對基礎知識的深入理解。

接下來,我們看一下 finally 語句塊是怎樣執行的。在排除了以上 finally 語句塊不執行的情況後,finally 語句塊就得保證要執行,既然 finally 語句塊一定要執行,那麼它和 try 語句塊與 catch 語句塊的執行順序又是怎樣的呢?還有,如果 try 語句塊中有 return 語句,那麼 finally 語句塊是在 return 之前執行,還是在 return 之後執行呢?帶著這樣一些問題,我們還是以具體的案例來講解。

關於 try、catch、finally 的執行順序問題,我們還是來看看權威的論述吧!以下 **** 之間的內容摘自 Java 語言規范第四版(《 The Java™ Programming Language, Fourth Edition 》 )中對於 try,catch,和 finally 的描述。

*******************************************************************************
12.4. Try, catch, and finally

You catch exceptions by enclosing code in Try blocks. The basic syntax for a Try block is:

  1. try {
  2. statements
  3. } catch (exception_type1 identifIEr1) {
  4. statements
  5. } catch (exception_type2 identifIEr2) {
  6. statements
  7. ...
  8. } finally {
  9. statements
  10. }


where either at least one catch clause, or the finally clause, must be present. The body of the try statement is executed until either an exception is thrown or the body finishes successfully. If an exception is thrown, each catch clause is examined in turn, from first to last, to see whether the type of the exception object is assignable to the type declared in the catch. When an assignable catch clause is found, its block is executed with its identifIEr set to reference the exception object. No other catch clause will be executed. Any number of catch clauses, including zero, can be associated with a particular TRy as long as each clause catches a different type of exception. If no appropriate catch is found, the exception percolates out of the try statement into any outer try that might have a catch clause to handle it.

If a finally clause is present with a try, its code is executed after all other processing in the try is complete. This happens no matter how completion was achIEved, whether normally, through an exception, or through a control flow statement such as return or break .
*******************************************************************************

上面這段文字的大體意思是說,不管 try 語句塊正常結束還是異常結束,finally 語句塊是保證要執行的。如果 try 語句塊正常結束,那麼在 try 語句塊中的語句都執行完之後,再執行 finally 語句塊。如果 try 中有控制轉移語句(return、break、continue)呢?那 finally 語句塊是在控制轉移語句之前執行,還是之後執行呢?似乎從上面的描述中我們還看不出任何端倪,不要著急,後面的講解中我們會分析這個問題。如果 try 語句塊異常結束,應該先去相應的 catch 塊做異常處理,然後執行 finally 語句塊。同樣的問題,如果 catch 語句塊中包含控制轉移語句呢? finally 語句塊是在這些控制轉移語句之前,還是之後執行呢?我們也會在後續討論中提到。

其實,關於 try,catch,finally 的執行流程遠非這麼簡單,有興趣的讀者可以參考 Java 語言規范第三版(《 The Java™ Language Specification, Third Edition 》 )中對於 Execution of try-catch-finally 的描述,非常復雜的一個流程。限於篇幅的原因,本文不做摘錄,請感興趣的讀者自行閱讀。

finally 語句示例說明

下面,我們先來看一個簡單的例子(清單 3)。

清單 3.

  1. public class Test {
  2. public static void main(String[] args) {
  3. try {
  4. System.out
  5. .println("try block");
  6. return ;
  7. } finally {
  8. System.out
  9. .println("finally block");
  10. }
  11. }
  12. }

清單 3 的執行結果為

try block
finally block 

清單 3 說明 finally 語句塊在 try 語句塊中的 return 語句之前執行。我們再來看另一個例子(清單 4)。

清單 4.

  1. public class Test {
  2. public static void main(String[] args) {
  3. System.out
  4. .println("reture value of test() : " + test
  5. ());
  6. }
  7. public static int test(){
  8. int i = 1;
  9. try {
  10. System.out
  11. .println("try block");
  12. i = 1 / 0;
  13. return 1;
  14. }catch (Exception e){
  15. System.out
  16. .println("exception block");
  17. return 2;
  18. }finally {
  19. System.out
  20. .println("finally block");
  21. }
  22. }
  23. }

清單 4 的執行結果為:

try block
exception block
finally block
reture value of test() : 2 

清單 4 說明了 finally 語句塊在 catch 語句塊中的 return 語句之前執行。

從上面的清單 3 和清單 4,我們可以看出,其實 finally 語句塊是在 try 或者 catch 中的 return 語句之前執行的。更加一般的說法是,finally 語句塊應該是在控制轉移語句之前執行,控制轉移語句除了 return 外,還有 break 和 continue。另外,throw 語句也屬於控制轉移語句。雖然 return、throw、break 和 continue 都是控制轉移語句,但是它們之間是有區別的。其中 return 和 throw 把程序控制權轉交給它們的調用者(invoker),而 break 和 continue 的控制權是在當前方法內轉移。請大家先記住它們的區別,在後續的分析中我們還會談到。

還是得來點有說服力的證據,下面這段摘自 Java 語言規范第四版(《 The Java™ Programming Language, Fourth Edition 》 ),請讀者自己體會一下其含義。

*******************************************************************************

A finally clause can also be used to clean up for break , continue , and return , which is one reason you will sometimes see a try clause with no catch clauses. When any control transfer statement is executed, all relevant finally clauses are executed. There is no way to leave a try block without executing its finally clause.

*******************************************************************************

好了,看到這裡,是不是有人認為自己已經掌握了 finally 的用法了?先別忙著下結論,我們再來看兩個例子 – 清單 5 和清單 6。

清單 5.

  1. public class Test {
  2. public static void main(String[] args) {
  3. System.out
  4. .println("return value of getValue(): " + getValue
  5. ());
  6. }
  7. public static int getValue() {
  8. try {
  9. return 0;
  10. } finally {
  11. return 1;
  12. }
  13. }
  14. }


清單 5 的執行結果:

return value of getValue(): 1 


清單 6.

  1. public class Test {
  2. public static void main(String[] args) {
  3. System.out
  4. .println("return value of getValue(): " + getValue
  5. ());
  6. }
  7. public static int getValue() {
  8. int i = 1;
  9. try {
  10. return i;
  11. } finally {
  12. i++;
  13. }
  14. }
  15. }

清單 6 的執行結果:

return value of getValue(): 1 

利用我們上面分析得出的結論:finally 語句塊是在 try 或者 catch 中的 return 語句之前執行的。 由此,可以輕松的理解清單 5 的執行結果是 1。因為 finally 中的 return 1,語句要在 try 中的 return 0;語句之前執行,那麼 finally 中的 return 1;語句執行後,把程序的控制權轉交給了它的調用者 main()函數,並且返回值為 1。那為什麼清單 6 的返回值不是 2,而是 1 呢?按照清單 5 的分析邏輯,finally 中的 i++;語句應該在 try 中的 return i;之前執行啊? i 的初始值為 1,那麼執行 i++;之後為 2,再執行 return i;那不就應該是 2 嗎?怎麼變成 1 了呢?

關於 Java 虛擬機是如何編譯 finally 語句塊的問題,有興趣的讀者可以參考《 The JavaTM Virtual Machine Specification, Second Edition 》中 7.13 節 Compiling finally。那裡詳細介紹了 Java 虛擬機是如何編譯 finally 語句塊。實際上,Java 虛擬機會把 finally 語句塊作為 subroutine(對於這個 subroutine 不知該如何翻譯為好,干脆就不翻譯了,免得產生歧義和誤解。)直接插入到 try 語句塊或者 catch 語句塊的控制轉移語句之前。但是,還有另外一個不可忽視的因素,那就是在執行 subroutine(也就是 finally 語句塊)之前,try 或者 catch 語句塊會保留其返回值到本地變量表(Local Variable Table)中。待 subroutine 執行完畢之後,再恢復保留的返回值到操作數棧中,然後通過 return 或者 throw 語句將其返回給該方法的調用者(invoker)。請注意,前文中我們曾經提到過 return、throw 和 break、continue 的區別,對於這條規則(保留返回值),只適用於 return 和 throw 語句,不適用於 break 和 continue 語句,因為它們根本就沒有返回值。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved