异常处理——创建抛出
异常处理——创建抛出
代码如下:
package Day09; import java.util.Scanner; public class QuotientWithException {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Enter 2 integers: ");
int num1 = input.nextInt();
int num2 = input.nextInt();
try {
if (num2 == 0) {
throw new ArithmeticException("Divisor cannot be 0");
}
System.out.println("num1 / num2 = " + num1 / num2);
} catch (ArithmeticException e) {
e.printStackTrace();
System.out.println("Divisor cannot be 0");
}
System.out.println("Program execution continues ...");
input.close();
/**
* 如果输入的第二个数字是0,那就产生一个运行时错误runtime error。 因为不能用0除一个整数。
* 解决这个错误的一个简单方法就是添加一个If来测试第二个数字
*/
}
}
只相信苦尽甘来
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步