public class ArrayTest {
public static void main(String[] args) {
ArrayTest arraytest = new ArrayTest();
arraytest.test(new int[] { 1, 2, 3 });
// 也可以姿镇
int[] intArray = new int[] { 1, 2, 3 };
arraytest.test(intArray);
// 还可以隐册丛灶樱
int[] intArray2 = new int[3];
intArray2[0] = 1;
intArray2[1] = 2;
intArray2[2] = 3;
arraytest.test(intArray2);
}
public void test(int[] a) {
for (int i : a) {
System.out.println(i);
}
}
}
int a[]={1,2,3};