2010年4月13日 星期二

java例外處理的注意事項


以下為例外處理的基本程式區塊

try{
...
}catch(Exception1 e){
...
}catch(Exception2 e){
...
}finally{
...
}

例外處理有些規則必須要注意: