码迷,mamicode.com
首页 > 编程语言 > 详细

数组的常见异常

时间:2019-10-05 14:17:03      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:int   string   bounds   下标越界   except   exception   下标   sys   数组   

//1.数组下标越界的异常:java.lang.ArrayIndexOutOfBoundsException
        int[] i = new int[10];
//      i[0] = 90;
//      i[10] = 99;
        
//      for(int m = 0;m <= i.length;m++){
//          System.out.println(i[m]);
//      }
        //2.空指针的异常:NullPointerException
        //第一种:
//      boolean[] b = new boolean[3];
//      b = null;
//      System.out.println(b[0]);
        
        //第二种:
//      String[] str = new String[4];
//      //str[3] = new String("AA");//str[3] = "AA";
//      System.out.println(str[3].toString());
        
        //第三种:
        int[][] j = new int[3][];
        j[2][0] = 12;

数组的常见异常

标签:int   string   bounds   下标越界   except   exception   下标   sys   数组   

原文地址:https://www.cnblogs.com/liyao0312/p/11624446.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!