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]

在这种情况下,列表的元素必须是彼此可比较的。

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 compare(E a, E b)?]) {
  throw new UnsupportedError("Cannot sort immutable List.");
}