Java throws定义方法异常
提问人:刘旭39发布时间:2020-11-30
throws关键字用于指定方法可能抛出的异常,多个异常之间通过逗号分隔。throws拋出异常语 法定义格式为:
[访问权限修饰符]方法返回类型方法名(参数..) throws异常类型1,异常类型2 {
//代码块
}
//throws定义方法异常
public class Demo {
public static void main(String[] args) throws Exception {
test();
}
private static void test() throws Exception{
throw new IlleaglArgumentException("方法内抛出异常");
}
}
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>