public class Num { public static void main(String[] args) { arraysTest(); } /** * 一维数组的三种写法 */ public static void arraysTest() { //第一种写法/一维数组的标准格式 int[] m = new int[]{1, 2, 3, 4, 5}; String[] str = new String[]{"我", "是", "谁"}; //通过foreach取出数组里的值 for (String st : str) { System.out.println(st); } //第二种写法/简写格式 int[] n = {1, 2, 3, 4, 5}; System.out.println(n); //第三种写法,初始化容量 int[] i = new int[2]; i[0] = 1; i[1] = 2; //初始化容量一旦超过初始化容量,会报java.lang.ArrayIndexOutOfBoundsException异常 //i[2]=3; System.out.println(i); } 分类: JAVA