定义数组或遍历数组并输出
1 //数组的定义方式 2 3 int[] a;//常用的定义数组的方式 4 5 int b []; 6 7 //在使用之前一定要分配空间(指定数组的大小(长度)),固定大小不能修改 8 //new用来分配内存空间,经常用 9 //自动赋初始值0,不能让空间空着 10 long[] c= new long[5]; 11 12 //数组的索引,从0开始(就是给每一个数编号),最大的索引号是数组长度-1 13 14 c[0]=123; 15 c[2]=222; 16 c[3]=333; 17 18 System.out.println(c[0]); 19 20 int d[] = new int[]{1,2,3,7,5};//初始大小和赋值一次完成 21 22 int e[] = new int[]{8,22,33,88,999,9383}; 23 24 //遍历输出 通过循环 25 for(int i = 0;i<=d.length-1 ;i++) 26 { 27 System.out.print(d[i]+","); 28 } 29 System.out.println(); 30 31 // foreach循环语句 32 for(int x:e) 33 { 34 System.out.print(x+","); 35 } 36 System.out.println();
运行的结果: