从Dart列表中删除重复项的2种方法
【摘要】
本文向您展示了从 Flutter 中的列表中删除重复项的 2 种方法。第一个适用于原始数据类型列表。第二个稍微复杂一些,但适用于map****列表或对象列表。
转换为 Set 然后反转为 List
这...
本文向您展示了从 Flutter 中的列表中删除重复项的 2 种方法。第一个适用于原始数据类型列表。第二个稍微复杂一些,但适用于map****列表或对象列表。
转换为 Set 然后反转为 List
这是一个简单列表的简单快速的解决方案。
例子:
void main(){
final myNumbers = [1, 2, 3, 3, 4, 5, 1, 1];
final uniqueNumbers = myNumbers.toSet().toList();
print(uniqueNumbers);
final myStrings = ['a', 'b', 'c', 'a', 'b', 'a'];
final uniqueStrings = myStrings.toSet().toList();
print(uniqueStrings);
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
输出:
[1, 2, 3, 4, 5]
[a, b, c]
- 1
- 2
从map或对象列表中删除重复项
我们的策略是将列表的每个项目转换为 JSON 字符串,然后像第一种方法一样使用toSet()和toList()。
例子:
import "dart:convert";
void main(){
final myList = [
{
'name': 'Andy',
'age': 41
},
{
'name': 'Bill',
'age': 43
},
{
'name': 'Andy',
'age': 41
}
];
// convert each item to a string by using JSON encoding
final jsonList = myList.map((item) => jsonEncode(item)).toList();
// using toSet - toList strategy
final uniqueJsonList = jsonList.toSet().toList();
// convert each item back to the original form using JSON decoding
final result = uniqueJsonList.map((item) => jsonDecode(item)).toList();
print(result);
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
输出:
[{name: Andy, age: 41}, {name: Bill, age: 43}]
- 1
文章来源: jianguo.blog.csdn.net,作者:坚果前端の博客,版权归原作者所有,如需转载,请联系作者。
原文链接:jianguo.blog.csdn.net/article/details/120177584
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)