gpt4 book ai didi

c# - linq 扩展方法 ElementAt 的性能

转载 作者:太空宇宙 更新时间:2023-11-03 22:22:06 27 4
gpt4 key购买 nike

Enumerable.ElementAt(TSource) 方法的 MSDN 库条目说

"If the type of source implements IList, that implementation is used to obtain the element at the specified index. Otherwise, this method obtains the specified element."

假设我们有以下示例:

        ICollection<int> col = new List<int>() { /* fill with items */ };
IList<int> list = new List<int>() { /* fill with items */ };

col.ElementAt(10000000);
list.ElementAt(10000000);

执行上有什么不同吗?或者 ElementAt 是否认识到 col 也实现了 IList<>,尽管它只被声明为 ICollection<>?

谢谢

最佳答案

变量本身的类型与ElementAt无关方法 - 就而言,它仅声明为 IEnumerable<T> ,因为这就是参数类型。 (两个调用将绑定(bind)到相同的扩展方法。)

它是在 ElementAt 中测试的对象的执行时类型.

关于c# - linq 扩展方法 ElementAt 的性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2730846/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com