其他分享
首页 > 其他分享> > 抛出异常

抛出异常

作者:互联网

package com.liu.exception;

import com.liu.oop.demo2.A;

public class Test1 {
public static void main(String[] args) {
try {
new Test1().test(1,0);
} catch (ArithmeticException e) {
e.printStackTrace();
} finally {
}
}
//假设这个方法中 处理不了这个异常 方法上抛出异常
public void test(int a ,int b) throws ArithmeticException {
if (b==0){
throw new ArithmeticException();//主动抛出异常,一般在方法中使用
}
}
}

标签:抛出,ArithmeticException,liu,test,异常,public
来源: https://www.cnblogs.com/sm12580/p/15313497.html