gpt4 book ai didi

c# - List 上的 Select() 是否会忘记集合的大小?

转载 作者:行者123 更新时间:2023-11-30 13:39:13 26 4
gpt4 key购买 nike

在下面的代码中,Select() 方法是否足够智能以将列表的大小保持在内部某处以使 ToArray() 方法便宜?

List<Thing> bigList = someBigList;
var bigArray = bigList.Select(t => t.SomeField).ToArray();

最佳答案

这很容易检查,无需查看实现。只需创建一个实现 IList<T> 的类, 并在 Count 中添加踪迹属性:

    class MyList<T> : IList<T>
{
private readonly IList<T> _list = new List<T>();
public IEnumerator<T> GetEnumerator()
{
return _list.GetEnumerator();
}

public void Add(T item)
{
_list.Add(item);
}

public void Clear()
{
_list.Clear();
}

public bool Contains(T item)
{
return _list.Contains(item);
}

public void CopyTo(T[] array, int arrayIndex)
{
_list.CopyTo(array, arrayIndex);
}

public bool Remove(T item)
{
return _list.Remove(item);
}

public int Count
{
get
{
Console.WriteLine ("Count accessed");
return _list.Count;
}
}

public bool IsReadOnly
{
get { return _list.IsReadOnly; }
}

public int IndexOf(T item)
{
return _list.IndexOf(item);
}

public void Insert(int index, T item)
{
_list.Insert(index, item);
}

public void RemoveAt(int index)
{
_list.RemoveAt(index);
}

public T this[int index]
{
get { return _list[index]; }
set { _list[index] = value; }
}

#region Implementation of IEnumerable

IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}

#endregion
}

如果Count属性被访问,这段代码应该打印“Count accessed”:

var list = new MyList<int> { 1, 2, 3 };
var array = list.Select(x => x).ToArray();

但它不打印任何东西,所以不,它不跟踪计数。当然,可能会有针对 List<T> 的优化。 , 但似乎不太可能...

关于c# - List 上的 Select() 是否会忘记集合的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12924398/

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