我知道有List<string>
,但是我需要使用Set<string>
。有没有一种方法可以按字母顺序对其进行排序?
Set reasons = {
'Peter',
'John',
'James',
'Luke',
}
最佳答案
使用 SplayTreeSet
代替:
import 'dart:collection';
...
final sortedSet = SplayTreeSet.from(
{'Peter', 'John', 'James', 'Luke'},
// Comparison function not necessary here, but shown for demonstrative purposes
(a, b) => a.compareTo(b),
);
print(sortedSet);
// Prints: {James, John, Luke, Peter}
正如jamesdlin所指出的,如果该类型实现Comparable
,则不需要比较功能。关于flutter - 如何在Dart/Flutter中按字母顺序对Set <String>进行排序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/64233450/