Java程序填空。下面程序的功能是产生一个除数为0的异常并捕获,请填空使程序完整

publicclassTestThrow{staticintx=0;staticinty=0;publicstaticvoiddivide()①{//方法定义抛出异常if... public class TestThrow {
static int x = 0;
static int y = 0;
public static void divide( ) ① { //方法定义抛出异常
if (x != 0) {
y = 100 / x;
} else {
throw ② ArithmeticException("除数不能为零!");
}
}
public static void main(String[] args) {
try {
divide( );
} catch( ③ e) {
e.printStackTrace( );
}
}
}
展开
 我来答
雪飞潇潇
2018-12-18 · TA获得超过6275个赞
知道大有可为答主
回答量:1968
采纳率:91%
帮助的人:877万
展开全部

1): throws ArithmeticException

2:)new

3:)ArithmeticException

代码块里抛异常使用的是throw 关键字, 方法体抛异常使用的是throws 关键字

使用try catch 用于捕获抛出的异常, 并试图进行处理

完整的参考代码

public class TestThrow {
static int x = 0;
static int y = 0;

public static void divide() throws ArithmeticException { // 方法定义抛出异常
if (x != 0) {
y = 100 / x;
} else {
throw new ArithmeticException("除数不能为零!");//抛出异常
}
}

public static void main(String[] args) {
try {
divide();
} catch (ArithmeticException e) {//捕获方法抛出的异常,并在catch里打印出来
e.printStackTrace();
}
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式