可以通过数组的length属性访问数组的长度(它存储的元素数)。
例子:
int[ ] intArr = new int[5]; System.out.println(intArr.length); //输出 5
不要忘记,在数组中,索引从0开始。所以,在上面的例子中,最后一个索引是4。
0