63异常处理— try-catch- finally语句 statement//可能发生异常的程序代码 catch(ExceptionTypel objRef1)t exception handling//处理异常的程序代码1 catch(ExceptionType2 objRef2)t exception handling//处理异常的程序代码2 catch(ExceptionTypeN objRefNX exception handling//处理异常的程序代码N finallyt finally handling/无论是否发生异常都要执行的程序代码6.3 异常处理—try-catch-finally语句 try{ statement //可能发生异常的程序代码 } catch(ExceptionType1 objRef1){ exception handling //处理异常的程序代码1 } catch(ExceptionType2 objRef2){ exception handling //处理异常的程序代码2 } … catch(ExceptionTypeN objRefN){ exception handling //处理异常的程序代码N } finally{ finally handling //无论是否发生异常都要执行的程序代码 }