<parent>
<first_child>1111111</first_child>
<second_child>2222222</second_child>
</parent>
和
<parent>
<second_child>2222222</second_child>
<first_child>1111111</first_child>
</parent>
應被視爲具有相同的結構或不個XML?
<parent>
<first_child>1111111</first_child>
<second_child>2222222</second_child>
</parent>
和
<parent>
<second_child>2222222</second_child>
<first_child>1111111</first_child>
</parent>
應被視爲具有相同的結構或不個XML?
它基本上取決於你如何定義你的模式,例如,使用XSD,如果訂單無關緊要,則可以使用all
;如果使用訂單,則可以使用sequence
。詳情請參閱w3schools page。
它完全取決於將要解釋XML的內容。
想象一下,它實際上是HTML,這些是段落標籤......顯然這個順序很重要。在其他情況下,它可能不會。
它取決於用於驗證它的模式。