java入门教程:Java数组最全详解_数组作为函数的参数
来源 :中华考试网 2016-05-03
中数组作为函数的参数
数组可以作为参数传递给方法。例如,下面的例子就是一个打印int数组中元素的方法。
public static void printArray( int [] array) {
for ( int i = 0 ; i < array.length; i++) {
System.out.print(array[i] + " " );
}
}
|
下面例子调用printArray方法打印出 3,1,2,6,4和2:
printArray( new int []{ 3 , 1 , 2 , 6 , 4 , 2 });
|
数组作为函数的返回值
public static int [] reverse( int [] list) {
int [] result = new int [list.length];
for ( int i = 0 , j = result.length - 1 ; i < list.length; i++, j--) {
result[j] = list[i];
}
return result;
}
|
以上实例中result数组作为函数的返回值。