在方法中抛出异常

学习内容:

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

 

posted @ 2020-08-11 10:19  CherriesOvO  阅读(683)  评论(0编辑  收藏  举报