首页 > 代码库 > Java异常捕获
Java异常捕获
1 public class Main { 2 3 /** 4 * 在写异常处理的时候,一定要把异常范围小的放在前面,范围大的放在后面, 5 * Exception这个异常的根类一定要刚在最后一个catch里面, 6 * 如果放在前面或者中间,任何异常都会和Exception匹配的,就会报已捕获到异常的错误。 7 * @param args 8 */ 9 public static void main(String[] args) {10 int a[] = new int[] {1,2,3,4,5};11 try {12 System.out.println(a[6]);13 14 } catch (ArrayIndexOutOfBoundsException ae) {15 System.out.println("Catching ArrayIndexOutOfBounds"16 + " Exception ..."); 17 } catch (Exception e) {18 System.out.println("Catching Exception ...");19 }20 21 }22 23 }
输出:Catching ArrayIndexOutOfBounds Exception ...
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。