在XML中,如何表示列表?
使用封闭列表实体:
<person>
    <firstname>Joe</firstname>
    <lastname>Bloggs</lastname>
    <children>
        <child .../>
        <child .../>
        <child .../>
        <child .../>
        <child .../>
    </children>
</person>
或者没有:
<person>
    <firstname>Joe</firstname>
    <lastname>Bloggs</lastname>
    <child .../>
    <child .../>
    <child .../>
    <child .../>
    <child .../>
</person>