1. 程式人生 > >動手動腦-5

動手動腦-5

package 關於異常;
import javax.swing.*;
public class AboutException {
    public static void main(String[] a) 
       {
          int i=1, j=0, k;
         // k=i/j;


        try
        {
            
            k = i/j;    // Causes division-by-zero exception
            //throw new Exception("Hello.Exception!");
} catch ( ArithmeticException e) { System.out.println("被0除. "+ e.getMessage()); } catch (Exception e) { if (e instanceof ArithmeticException) System.out.println("被0除"); else { System.
out.println(e.getMessage()); } } finally { JOptionPane.showConfirmDialog(null,"OK"); } } }

這個程式執行的結果為:先彈出一個框,有OK?,然後選擇是,否,或者取消。被0除.  / by zero

因為j=0,但是j是分母,所以出現異常,但是把會出現異常的程式碼放入了try中,當程式檢測到出現了一個錯誤時會丟擲一個異常物件。異常處理程式碼會捕獲並處理這個錯誤。catch語句塊中的程式碼用於處理錯誤。當異常發生時,程式控制流程由try語句塊跳轉到catch語句塊。不管是否有異常發生,finally語句塊中的語句始終保證被執行。如果沒有提供合適的異常處理程式碼,JVM將會結束掉整個應用程式。

package 關於異常;

public class CatchWho {
    public static void main(String[] args) { 
        try { 
                try { 
                    throw new ArrayIndexOutOfBoundsException(); 
                } 
                catch(ArrayIndexOutOfBoundsException e) { 
                       System.out.println(  "ArrayIndexOutOfBoundsException" +  "/內層try-catch"); 
                }
 
            throw new ArithmeticException(); 
        } 
        catch(ArithmeticException e) { 
            System.out.println("發生ArithmeticException"); 
        } 
        catch(ArrayIndexOutOfBoundsException e) { 
           System.out.println(  "ArrayIndexOutOfBoundsException" + "/外層try-catch"); 
        } 
    } 
}

這個程式執行的結果為:

ArrayIndexOutOfBoundsException/內層try-catch
發生ArithmeticException

package 關於異常;

public class CatchWho2 {
    public static void main(String[] args) { 
        try {
                try { 
                    throw new ArrayIndexOutOfBoundsException(); 
                } 
                catch(ArithmeticException e) { 
                    System.out.println( "ArrayIndexOutOfBoundsException" + "/內層try-catch"); 
                }
            throw new ArithmeticException(); 
        } 
        catch(ArithmeticException e) { 
            System.out.println("發生ArithmeticException"); 
        } 
        catch(ArrayIndexOutOfBoundsException e) { 
            System.out.println( "ArrayIndexOutOfBoundsException" + "/外層try-catch"); 
        } 
    } 
}

這個程式執行的結果為:ArrayIndexOutOfBoundsException/外層try-catch

package 關於異常;

public class EmbededFinally {
public static void main(String args[]) {
        
        int result;
        
        try {
            
            System.out.println("in Level 1");

           
             try {
                
                System.out.println("in Level 2");
  // result=100/0;  //Level 2
               
                 try {
                   
                     System.out.println("in Level 3");
                      
                     result=100/0;  //Level 3
                
                } 
                
                catch (Exception e) {
                    
                    System.out.println("Level 3:" + e.getClass().toString());
                
                }
                
                
                finally {
                    
                    System.out.println("In Level 3 finally");
                
                }
                
               
                // result=100/0;  //Level 2

            
                }
            
            catch (Exception e) {
               
                 System.out.println("Level 2:" + e.getClass().toString());
           
             }
             finally {
                
                System.out.println("In Level 2 finally");
           
             }
             
            // result = 100 / 0;  //level 1
        
        } 
        
        catch (Exception e) {
            
            System.out.println("Level 1:" + e.getClass().toString());
        
        }
        
        finally {
           
.             System.out.println("In Level 1 finally");
        
        }
    
    }


}

這個程式無法執行。

通過仔細查詢我發現在程式碼的第69行多了一個點,若將這個點刪去,執行結果為:

in Level 1
in Level 2
in Level 3
Level 3:class java.lang.ArithmeticException
In Level 3 finally
In Level 2 finally
In Level 1 finally

先執行try中的程式碼,分別是in Level 1、in Level 2、in Level 3,因為第一個try和第二個try不出現異常,所以就跳過了catch語句塊,第三個try出現了異常,分母上出現了0,所以就要進行異常處理,執行catch語句,所以這一塊執行的結果為:Level 3:class java.lang.ArithmeticException。然後依次執行finally語句塊,所以之後的執行結果為:In Level 3 finally、In Level 2 finally、In Level 1 finally。

package 關於異常;

public class SystemExitAndFinally {
    public static void main(String[] args)
    {
        
        try{

            
            System.out.println("in main");
            
            throw new Exception("Exception is thrown in main");

                    //System.exit(0);

        
        }
        
        catch(Exception e)

            {
            
            System.out.println(e.getMessage());
            
            System.exit(0);
        
        }
        
        finally
        
        {
            
            System.out.println("in finally");
        
        }
    
    }


}

這個程式執行的結果為:

in main
Exception is thrown in main

通過這個程式我發現finally語句不一定會被執行,因為在catch語句塊中有一句System.exit(0);,使程式碼執行結束,所以finally語句塊將不再執行。