【java】学习路径29-异常捕捉实例

Posted on 2022-04-06 10:58  罗芭Remoo  阅读(17)  评论(0编辑  收藏  举报
import java.util.ArrayList;
public class ExceptionCatchDemo {
public static void main(String[] args) {
// ArrayList<Integer> integers1 = new ArrayList<>();
// System.out.println(integers1.get(1));
// try{
// ArrayList<Integer> integers = new ArrayList<>();
// System.out.println(integers.get(1));
// }
// catch(Exception e){
// System.out.println(e);
// }
try{
ArrayList<Integer> integers = new ArrayList<>();
System.out.println(integers.get(1));
}
catch(IndexOutOfBoundsException e){
e.printStackTrace();//会有红色的错误进警告,但是不会影响后面程序的运行。
// System.out.println(e.getMessage());
}

System.out.println("后面的程序");
}
}