1.异常
public class Demo1 { /* 异常体系 Throwable是所有异常的祖师爷 Error :不需要处理,处理不了此异常 Exception:程序员能处理的异常 Exception分为两种,一种是运行时异常,一种是编译时异常 */ public static void main(String[] args) { int[] arr={10,20,30}; try{ System.out.print(arr[3]); }catch (ArrayIndexOutOfBoundsException e){ e.printStackTrace(); System.out.println("报错了:"+e.getMessage()); } } }
1