1 InputMisMatchException 输入类型不匹配
    2 ArrayIndexOutOfBoundsException 数组索引越界
    3 NegativeArraySizeException 数组长度不合法 (即数组长度为负数)
    4 NullPointerException 空指针异常 (二维数组初始化时int[][] array = new int[3][];往里存值会出现异常)
    5 NumberFormatException 数字格式化异常
    6 ArithmeticException 算数异常 整数不允许除以0 但是可以用小数/0
    7 ClassCastException 类型强制转换异常 将对象的类型还原时 与真实的类型不匹配
    8 IllegalArgumentException 非法的参数异常 (比如ArrayList list = new ArrayList(-1);)
    9 StringIndexOutOfBoundsException 字符串越界异常
    10 IndexOutOfBoundsException 集合越界异常 (List集合才会出现)
    11 FileNotFoundException 系统找不到文件