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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。