例外處理程序
public class ch10_1_1 {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i;
try {
for (i = 2; i > -1; i--) {
System.out.println("計算結果為: " + 10 / i);
}
} catch (ArithmeticException e) {
// TODO 自動產生的 catch 區塊
System.out.println("例外說明: "+e.getMessage());
System.out.println("例外原因: ");
e.printStackTrace();
}
finally{
System.out.println("例外處理結束");
}
System.out.println("JAVA程式執行結束!!");
}
}
沒有留言:
張貼留言