1. 案例示例:
package com.himi.trycatch; public class ExceptionDemo { public static void main(String[] args) {
int a = 2;
int b = 0;
try {
System.out.println(a / b);
} catch (ArithmeticException ae) {
System.out.println("除数不能为0");
}
System.out.println("over"); } }
运行结果如下:
从上面的运行结果可以知道,暴露了第9行代码可能出现的问题。但是这个问题捕获到了提示给用户,让用户知道编写的代码出现的是怎样的问题,方便用户修正代码。同时不会因为第9行代码的问题影响下面的正常代码的运行。