gpt4 book ai didi

c# - 为什么 i.Parent.ReplaceWith(i) 不抛出异常?

转载 作者:行者123 更新时间:2023-11-30 20:31:58 24 4
gpt4 key购买 nike

在这些语句中(使用 MoreLinq 运行):

var xml = @"
<div>
<p>
<h2>hey</h2>
</p>
<pre />
<h2 class=""cool"" />
<p>
<h2>okay</h2>
</p>
</div>
".Trim();

var div = XElement.Parse(xml);
var h2Elements = div.Descendants("h2");
h2Elements.ToList().ForEach(i =>
{
if(i.Parent.Name != "p") return;
i.Parent.ReplaceWith(i);
});

我看到 i.Parent.ReplaceWith(i) 不会抛出异常,但这会抛出空引用异常(使用 MoreLinq 中的 ForEach ):

h2Elements.ForEach(i =>
{
if(i.Parent.Name != "p") return;
i.Parent.ReplaceWith(i);
});

我知道 LINQ 的 ToList() 正在制作列表的副本,但副本不会也抛出异常吗?此外,这里是否存在某种孤立引用的内存泄漏?

最佳答案

您根本不需要 MoreLINQ 来演示这一点 - 您也可以简化示例代码:

using System;
using System.Linq;
using System.Xml.Linq;

class Program
{
static void Main()
{
var element = new XElement(
"root",
new XElement("parent", new XElement("child")),
new XElement("parent", new XElement("child"))
);
var children = element.Descendants("child");
foreach (var child in children.ToList())
{
child.Parent.ReplaceWith(child);
}
}
}

没有 ToList打电话,NullReferenceException被抛出。随着ToList()打电话,也不异常(exception)。异常(exception)情况是:

Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object.
at System.Xml.Linq.XContainer.<GetDescendants>d__39.MoveNext()
at Program.Main()

基本上,您通过在遍历树的同时修改树来使查询无效。这有点像调用 AddRemoveList<T> 上虽然迭代它,但 LINQ to XML 更难发现问题并引发有意义的异常。重要的是要注意调用 ReplaceWith 时不会出现异常。 - 这是失败的迭代部分,因为在您修改树后它无法正确地遍历树。

当您调用 ToList() 时, 你刚刚分开 XElement列表中的值 - 当您遍历该列表时,对元素的任何更改都不会更改列表中出现的引用。

至于内存泄漏:不,这就是垃圾收集器的用途...

关于c# - 为什么 i.Parent.ReplaceWith(i) 不抛出异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42269255/

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