- class PersonDemo1 {
- public static void main(String[] args) {
- int[] temp={1,4,7,9,13,34,45,66,70};
- System.out.println(arrayRev(temp)); //这里打印输出的是arrayRev(temp) 的返回值,
- //因为返回的数组所以,输出的是arrayRev(temp) 的内存地址
-
- }
- public static int[] arrayRev(int[] arr) { //这里,用void 修饰表示无返回值类型,
- 与前面的打印语句冲突//可改为反回数组类
- for (int x = 0;x<arr.length/2 ;x++ ) {
- int temp = arr[x];
- arr[x] = arr[arr.length-1-x];
- arr[arr.length-1-x] = temp;
- }
- return arr;// 这里要有反回值
- }
- }
复制代码 |