下文将采用示例的方式,讲述方法返回数组的示例,如下所示:
import java.util.*;
public class testClass {
public static void main(String[] args) {
double[] myArray= { 88,99,100 };
// Print all the array elements
printInfo(myArray);
printInfo(reverse(myArray));
}
public static void myArray(double[] array) {
for (int i = 0; i < array.length; i++) {
System.out.print(array[i] + " ");
}
System.out.println(" ");
}
public static double[] reverse(double[] list) {
double[] result = new double[list.length];
for (int i = 0, j = result.length - 1; i < list.length; i++, j--) {
result[j] = list[i];
}
return result;
}
}
----运行以上代码,将输出以下信息88,99,100
100,99,88
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。