在 LINQ 选择器内调用 ToArray 的性能影响

发布于 2024-10-28 21:35:31 字数 210 浏览 0 评论 0原文

如果我有以下语句:

whatever.Select(x => collection.ToArray()[index]).ToList();

LINQ 是否足够智能,可以仅执行一次 ToArray 转换(我不太清楚这个闭包是如何转换和评估的)?

我明白这段代码不好,只是感兴趣。

If I have the following statement:

whatever.Select(x => collection.ToArray()[index]).ToList();

Is LINQ smart enough to perform the ToArray cast only once (I'm not really aware of how this closure is transformed and evaluated)?

I understand that this code is bad, just interested.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

征棹 2024-11-04 21:35:31

不,它会对 whatever 中的每个项目执行一次。

No, it will be performed once for every item in whatever.

强者自强 2024-11-04 21:35:31

您可以查看 LINQBridge 的代码,尤其是 Select 方法(最终调用SelectYield

SelectYield 的本质是一个简单的 for 循环:

foreach (var item in source)
    yield return selector(item, i++);

其中 selector 是您传入的 lambda 表达式,在您的例子中 x = ()[index]。从这里可以明显看出,将为 whatever 中的每个元素计算整个 lambda 表达式。

请注意,LINQBridge 是 LINQ2Objects 的独立重新实现,因此不一定。相同(但在很大程度上至少表现得与 LINQ2Objects 完全相同,包括副作用)。

You can have a peek at the code for LINQBridge, especially the Select method (that ends up calling SelectYield.

The essence of SelectYield is a simple for-loop:

foreach (var item in source)
    yield return selector(item, i++);

Where selector is the lambda expression you pass in, in your case x => collection.ToArray()[index]. From here it is obvious that the whole lambda expression will be evaluated for every element in whatever.

Note that LINQBridge is a stand alone reimplementation of LINQ2Objects and thus not necessarily identical (but to a very large extent at least behaving exactly like LINQ2Objects, including side effects).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文