sort 方法

void sort(
  1. [int compare(
    1. E a,
    2. E b
    )?]
)
override

根据 compare 函数指定的顺序对此列表进行排序。

compare 函数必须充当 Comparator

final numbers = <String>['two', 'three', 'four'];
// Sort from shortest to longest.
numbers.sort((a, b) => a.length.compareTo(b.length));
print(numbers); // [two, four, three]

默认的 List 实现如果在省略 compare 时使用 Comparable.compare

final numbers = <int>[13, 2, -11, 0];
numbers.sort();
print(numbers); // [-11, 0, 2, 13]

在这种情况下,列表中的元素必须相互 `Comparable`。

比较器 `Comparator` 可能将对象视为相等(返回零),即使它们是不同的对象。排序函数不保证是稳定的,因此视为相等的不同对象可能会以任何顺序出现在结果中

final numbers = <String>['one', 'two', 'three', 'four'];
numbers.sort((a, b) => a.length.compareTo(b.length));
print(numbers); // [one, two, four, three] OR [two, one, four, three]

实现

void sort([int Function(E a, E b)? compare]) {
  Sort.sort(this, compare ?? _compareAny);
}