PLINQ 是否保留序列中的原始顺序?
即使结果是并行产生的,PLINQ 是否保证按照原始序列的操作顺序返回查询结果?例如:
new List<String>(){"a", "b", "c", "d"}.asParallel().Select(str => str + "a").asSequential().ToList().ForEach(str => Console.Write(str + ", ");
结果总是“aa, ba, ca, da,”吗?
Is PLINQ guaranteed to return query results in the order of the original sequence being operated on, even if results are produced in parallel? For instance:
new List<String>(){"a", "b", "c", "d"}.asParallel().Select(str => str + "a").asSequential().ToList().ForEach(str => Console.Write(str + ", ");
will the result always be "aa, ba, ca, da, "?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
AsOrdered()
来保留顺序:另请查看:如何:控制 PLINQ 查询中的排序
You have to use
AsOrdered()
to preserve the order:Also check out this: How to: Control Ordering in a PLINQ Query