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("后面的程序");
}
}