dart:collection
庫中ListMixin.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 ListMixin.setAll用法及代碼示例
- Dart ListMixin.sublist用法及代碼示例
- Dart ListMixin.singleWhere用法及代碼示例
- Dart ListMixin.shuffle用法及代碼示例
- Dart ListMixin.skipWhile用法及代碼示例
- Dart ListMixin.skip用法及代碼示例
- Dart ListMixin.setRange用法及代碼示例
- Dart ListMixin.expand用法及代碼示例
- Dart ListMixin.contains用法及代碼示例
- Dart ListMixin.join用法及代碼示例
- Dart ListMixin.where用法及代碼示例
- Dart ListMixin.toList用法及代碼示例
- Dart ListMixin.lastIndexOf用法及代碼示例
- Dart ListMixin.toSet用法及代碼示例
- Dart ListMixin.fillRange用法及代碼示例
- Dart ListMixin.reversed用法及代碼示例
- Dart ListMixin.take用法及代碼示例
- Dart ListMixin.insertAll用法及代碼示例
- Dart ListMixin.reduce用法及代碼示例
- Dart ListMixin.removeWhere用法及代碼示例
- Dart ListMixin.followedBy用法及代碼示例
- Dart ListMixin.getRange用法及代碼示例
- Dart ListMixin.removeLast用法及代碼示例
- Dart ListMixin.replaceRange用法及代碼示例
- Dart ListMixin.takeWhile用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 sort method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。