重新认识基本类型的变量
理解数组的名与实
数组 = 数组变量 + 数组实体
数组的长度
public class WhatIsArray { public static void main(String[] args) { int[] book = new int[10]; System.out.println(book[0]); // 访问数组的第一位 System.out.println(book[1]); // 访问数组的第二位 System.out.println("数组的长度是:" + book.length); // 查询数组的长度 } }
数组索引越界和初始值
public class IndexOutOfBoundExample { public static void main(String[] args) { int[] array = new int[5]; System.out.println(array[array.length-1]); System.out.println(array[array.length]); // array[5] 这样就会越界 } }
让变量指向新的数组
public class AssignArray { public static void main(String[] args) { int[] book = new int[3]; book[0] = 9; System.out.println("book长度为" + book.length + "。book[0] = " + book[0]); book = new int[32]; System.out.println("book长度为" + book.length + "。book[0] = " + book[0]); } }
原文:https://www.cnblogs.com/buildnewhomeland/p/12189812.html