總網頁瀏覽量

2011年12月30日 星期五

15章 例外處理

15章  例外處理

Exception extends Throwable
Throwable extends Object

Integer.parseInt方法: 將字串轉成int數值

public void fun() throws Exception{
    try{
  
    }
    catch(Exception e){
        throw e;
    }
    finally{
  
    }
}

toString()以簡單的字串描述該例外
getMessage()列出細節訊息
printStackTrace()將堆疊資訊印在螢幕上,可幫助設計者快速找到錯誤點

沒有留言:

張貼留言