如果我们在创建一个数组时,没有给出元素在运行的时候就会报空指针异常
public static void main(String[] args) { int[] ints = null; System.out.println(ints[1]); }
我们来看一下运行结果
假如我们在创建一个非常长的数组的时候,我们先知道数组中的长度可以点一个length的方法
写一段代码来看一下
public class Array4 { public static void main(String[] args) { int[] ints = new int[3]; System.out.println("长度为:"+ints.length); } }
看一下运行结果