在方法中抛出异常

学习内容:

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

原文地址:https://www.cnblogs.com/zyj3955/p/13473980.html