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("方法内抛出异常");
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>