将 IEnumerable转换为快速方法是什么?列出在 C# 2.0 中?
我们都知道慢速方式:
foreach..
we all know the slow way:
foreach..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们都知道慢速方式:
foreach..
we all know the slow way:
foreach..
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
列表构造函数是一个不错的选择。
The List constructor is a good bet.
怎么样:
请注意,这是针对序列恰好是
IList
的情况进行了优化 - 然后它使用IList.CopyTo
。在大多数情况下,它仍然是 O(n),但可能比迭代快得多:)(它还避免了创建大小时的任何调整大小。)How about:
Note that this is optimised for the situation where the sequence happens to be an
IList<T>
- it then usesIList<T>.CopyTo
. It'll still be O(n) in most situations, but potentially a much faster O(n) than iterating :) (It also avoids any resizing as it creates it.)您想在通用列表上使用 .AddRange 方法。
..或构造函数..
You want to use the .AddRange method on generic List.
.. or the constructor ..