Xdocument的后代节点vs节点
本文关键字:节点 vs 后代 Xdocument | 更新日期: 2023-09-27 17:50:41
我试图理解扩展方法,后裔节点和方法,类XDocument的"节点"之间的区别。
我可以看到,DescendantsNodes应该返回这个文档或元素的所有后代和Nodes应该返回该文档或元素的所有子节点。
我不明白"所有子节点"answers"所有后代"有什么区别。
有人能解释一下吗?
子节点是直接位于某个节点(父节点)下面的节点。后代将是位于同一节点"下面"的节点,但它也可以是位于子节点"下面"的多个级别。
子节点将是后代节点,但后代节点并不总是子节点。
Eg: <Parent><Child1 /><Child2><AnotherNode /></Child2></Parent>
-Parent
|
--> Child1 (Descendant)
|
--> Child2 (Descendant)
|
--> AnotherNode (Descendant, not child)
使用一个小代码示例可能更容易可视化:
string someXML = "<Root><Child1>Test</Child1><Child2><GrandChild></GrandChild></Child2></Root>";
var xml = XDocument.Parse(someXML);
Console.WriteLine ("XML:");
Console.WriteLine (xml);
Console.WriteLine ("'nNodes();'n");
foreach (XNode node in xml.Descendants("Root").Nodes())
{
Console.WriteLine ("Child Node:");
Console.WriteLine (node);
Console.WriteLine ("");
}
Console.WriteLine ("DescendantNodes();'n");
foreach (XNode node in xml.Descendants("Root").DescendantNodes())
{
Console.WriteLine ("Descendent Node:");
Console.WriteLine (node);
Console.WriteLine ("");
}
生产:
XML:
<Root>
<Child1>Test</Child1>
<Child2>
<GrandChild></GrandChild>
</Child2>
</Root>
Nodes();
Child Node:
<Child1>Test</Child1>
Child Node:
<Child2>
<GrandChild></GrandChild>
</Child2>
DescendantNodes();
Descendent Node:
<Child1>Test</Child1>
Descendent Node:
Test
Descendent Node:
<Child2>
<GrandChild></GrandChild>
</Child2>
Descendent Node:
<GrandChild></GrandChild>
给定
<root><child><grandchild>foo</grandchild></child></root>
root
元素节点有一个子节点,一个child
元素节点,但有三个后代节点,即child
元素节点、grandchild
元素节点和foo
文本节点。