从Arrays.sort
源代码:
public static void sort(int[] a) {
sort1(a, 0, a.length);
}
接着 :
private static void sort1(int x[], int off, int len) {
// Insertion sort on smallest arrays
if (len < 7) {
[...]
}
[...]
if (len > 7) {
[...]
}
[...]
}
这个神奇的数字 7 来自哪里,为什么?