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( );
}
}
} 展开
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( );
}
}
} 展开
展开全部
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();
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询