dart:core
库中List.sort
方法的用法介绍如下。
用法:
void sort(
[int compare(
E a,
E b
)?]
)
根据 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 List.shuffle用法及代码示例
- Dart List.setAll用法及代码示例
- Dart List.setRange用法及代码示例
- Dart List.sublist用法及代码示例
- Dart List.first用法及代码示例
- Dart List.fillRange用法及代码示例
- Dart List.addAll用法及代码示例
- Dart List.indexOf用法及代码示例
- Dart List.removeWhere用法及代码示例
- Dart List.reversed用法及代码示例
- Dart List.removeRange用法及代码示例
- Dart List.unmodifiable用法及代码示例
- Dart List.clear用法及代码示例
- Dart List.length用法及代码示例
- Dart List.from用法及代码示例
- Dart List.removeAt用法及代码示例
- Dart List.lastIndexWhere用法及代码示例
- Dart List.retainWhere用法及代码示例
- Dart List.removeLast用法及代码示例
- Dart List.filled用法及代码示例
- Dart List.empty用法及代码示例
- Dart List.of用法及代码示例
- Dart List.replaceRange用法及代码示例
- Dart List.remove用法及代码示例
- Dart List.asMap用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 sort method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。