gpt4 book ai didi

c# - 将集合转换为数组或列表的快速方法?

转载 作者:太空狗 更新时间:2023-10-29 18:17:49 25 4
gpt4 key购买 nike

对于我需要传递的每个 *Collection(HtmlNodeCollectionTreeNodeCollectionCookieCollection 等)类实例到只接受数组或列表的方法(例如,不应该有接受 TreeView 中的 TreeNodeCollection 的方法?)我必须编写这样的扩展方法:

public static TreeNode[] ToArray(this TreeNodeCollection nodes)
{
TreeNode[] arr = new TreeNode[nodes.Count];
nodes.CopyTo(arr, 0);
return arr;
}

或者遍历整个集合,将项目添加到输出列表,然后将输出列表转换为数组:

 public static TreeNode[] ToArray(this TreeNodeCollection nodes)
{
var output = new List<TreeNode>();
foreach (TreeNode node in nodes)
output.Nodes(node);
return output.ToArray();
}

那么,我的问题是:我经常需要这种扩展方法。如果列表很大,通常会分配大量内存。为什么我不能只获取对此 *Collection 类使用的内部数组的引用(而不是复制),这样我就不需要使用该扩展并执行此内存分配?甚至提供 ToArray() 方法。我们不需要知道最后一个案例中使用的内部实现或数组。

最佳答案

所有 BCL 集合类隐藏其内部数组的原因是出于“API 友好性”的原因。内部数组可以在需要增长或收缩时发生变化。然后,任何引用旧数组的用户代码都会变得困惑。此外,用户代码可能会访问对集合无效的数组索引。如果你有 ListCapacity = 16 && Count == 10然后您可以访问列表通常不允许的索引 15 处的内部数组。

这些问题使 API 难以使用。它们会导致支持票和 Stack Overflow 问题。

删除现有代码并将其替换为:

TreeNodeCollection nodes;
var myArray = nodes.Cast<TreeNode>().ToArray();

如果你觉得有必要,你可以把它变成一个扩展方法。将参数键入 IEnumerable (没有泛型)。为什么 BCL 中的现有集合没有升级以实现 IEnumerable<T> 对我来说是个谜.这就是为什么你需要 Cast . I just created a User Voice item for this.

关于c# - 将集合转换为数组或列表的快速方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29593590/

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