1.创建数组: int[] a = new int[n];//数组长度n不要求为常数,一旦创建了数组,其大小不可改变 int[] a = {0,1,2,3};//也可这样定义 获得数组元素的个数:arry.length 2.增强的for循环: for (variable:collection) statement //定义变量暂存collection(数组)中的元素 Arrays.toString(a);//返回一个包含数组元素的字符串 3.数组拷贝: ——int[] b = a; ——int[…
增强 for 循环 1. 增强的 for 循环对于遍历 Array 或 Collection 的时候相当方便. import java.util.*; public class Test { public static void main(String[] args) { int arr[] = {1,2,3,4}; for(int i:arr){ System.out.print(i+" "); } Collection c = new ArrayList(); c.add(new…