0
点赞
收藏
分享

微信扫一扫

在方法中抛出异常

学习内容:

1.使用throws关键字抛出异常

代码示例:

public class Shoot {
static void pop()throws NegativeArraySizeException{//定义方法
int[]arr=new int[-3];//创建数组
}
public static void main(String[] args) {
try {
pop();
}catch(NegativeArraySizeException e){
System.out.println("pop()方法异常");//输出异常信息
} }
}

运行截图:

在方法中抛出异常_数组

 

 明天任务:I/O

 



举报

相关推荐

0 条评论