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

数组的常见异常

时间:2018-01-30 12:30:50      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:指针   out   style   pointer   下标   lan   span   exception   log   

//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;

数组的常见异常

标签:指针   out   style   pointer   下标   lan   span   exception   log   

原文地址:https://www.cnblogs.com/wzlbigdata/p/8383564.html

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