数组可以作为参数传递给方法。例如,下面的例子就是一个打印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数组作为函数的返回值。
2015职称计算机考试书PowerPoint2007中 .. 定价:¥45 优惠价:¥42 更多书籍 | |
2015年全国职称计算机考试教材(2007模 .. 定价:¥225 优惠价:¥213 更多书籍 |