dart:html
库中ImmutableListMixin.sort
方法的用法介绍如下。
用法:
void sort(
[int compare(
E a,
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]
如果省略 compare
,则默认的 List 实现使用 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]
相关用法
- Dart ImmutableListMixin.shuffle用法及代码示例
- Dart ImmutableListMixin.setRange用法及代码示例
- Dart ImmutableListMixin.setAll用法及代码示例
- Dart ImmutableListMixin.replaceRange用法及代码示例
- Dart ImmutableListMixin.insert用法及代码示例
- Dart ImmutableListMixin.addAll用法及代码示例
- Dart ImmutableListMixin.retainWhere用法及代码示例
- Dart ImmutableListMixin.removeLast用法及代码示例
- Dart ImmutableListMixin.remove用法及代码示例
- Dart ImmutableListMixin.add用法及代码示例
- Dart ImmutableListMixin.insertAll用法及代码示例
- Dart ImmutableListMixin.removeRange用法及代码示例
- Dart ImmutableListMixin.removeWhere用法及代码示例
- Dart ImmutableListMixin.removeAt用法及代码示例
- Dart ImmutableListMixin.fillRange用法及代码示例
- Dart Iterator用法及代码示例
- Dart Iterable.takeWhile用法及代码示例
- Dart Int32x4List.view用法及代码示例
- Dart IterableMixin.isNotEmpty用法及代码示例
- Dart IterableMixin.firstWhere用法及代码示例
- Dart IterableMixin.lastWhere用法及代码示例
- Dart Iterable.skipWhile用法及代码示例
- Dart IterableMixin.every用法及代码示例
- Dart Iterable.toSet用法及代码示例
- Dart Int64List.sublist用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 sort method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。