这是我的主要方法:
public static void main(String[] args) {
int[] myArray = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
for (int i = 0; i < myArray.length; i++) {
System.out.println(myArray[i]);
}
int[] sortedArray = InsertionSort.sorter(myArray);
for (int i = 0; i < sortedArray.length; i++) {
System.out.println(sortedArray);
}
}
这是 InsertionSort.sorter 的样子:
public static int[] sorter(int[] a) {
return a;
}
这是输出:
1
2
3
4
5
6
7
8
9
10
[I@7000a32b
[I@7000a32b
[I@7000a32b
[I@7000a32b
[I@7000a32b
[I@7000a32b
[I@7000a32b
[I@7000a32b
[I@7000a32b
[I@7000a32b
那么我错过了什么?