I wrote code to reverse an integer array. Code is as shown below:
public class ReverseArray {
public static void main(String[] args) {
try {
int[] arr = new int[5];
arr[0] = 1;
arr[1] = 2;
arr[2] = 3;
arr[3] = 4;
arr[4] = 5;
for (int i = 0; i <= arr.length/2; i++)
int temp = arr[0];
arr[0] = arr[arr.length - i - 1];
arr[arr.length - i - 1] = temp;
}
System.out.println(arr);
} catch (Exception e) {
System.out.println(e);
}
}
}
But it's not reversing the array.. I'm getting following output.
[I@3bad086a
I don't see anything wrong with my logic.
printlnon your array is the location in memory where the first element of the array is stored, as a hexadecimal number. If you want to see the elements of the array you should write another functionprintArraywhich loops through the array and callsprintlnon the elements individually. – Chris Taylor Jan 6 '12 at 13:48