throw
throws
声明将要抛出何种类型的异常(声明)
public void 方法名(参数列表)
throws 异常列表{
//调用会抛出异常的方法或者:
throw new Exception();
}
class 自定义异常类 extends异常类型{
}
时间: 2024-10-12 23:20:56
throw
throws
声明将要抛出何种类型的异常(声明)
public void 方法名(参数列表)
throws 异常列表{
//调用会抛出异常的方法或者:
throw new Exception();
}
class 自定义异常类 extends异常类型{
}