位置:首页 > 软件操作教程 > 编程开发 > Java > 问题详情

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("方法内抛出异常");

}

}

](~EJ4$3{7QNE3$W16}~QCS.png

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部