当前位置: 首页 > 网络学院 > XML相关教程 > RDF > RDF 容器
RDF containers are used to describe group of things. For example, to list the authors of a book or to list the members in a band.
RDF 容器用于描述一组事物。举个例子,把某本书的作者列在一起。
The following RDF elements are used to describe such groups: <Bag>, <Seq>, and <Alt>.
下面的 RDF 元素用于描述这些的组:<Bag>、<Seq> 以及 <Alt>。
The <rdf:Bag> element is used to describe a list of values that is intended to be unordered.
<rdf:Bag> 元素用于描述一个规定为无序的值的列表。
The <rdf:Bag> element may contain duplicate values.
<rdf:Bag> 元素可包含重复的值。
<?xml version="1.0"?> <rdf:RDF <rdf:Description </rdf:RDF> |
The <rdf:Seq> element is used to describe a list of values that is intended to be ordered (For example, in alphabetical order).
<rdf:Seq> 元素用于描述一个规定为有序的值的列表(比如一个字母顺序的排序)。
The <rdf:Seq> element may contain duplicate values.
<rdf:Bag> 元素可包含重复的值。
<?xml version="1.0"?> <rdf:RDF <rdf:Description </rdf:RDF> |
The <rdf:Alt> element is used to describe a list of alternative values (the user can select only one of the values).
<rdf:Alt> 元素用于一个可替换的值的列表(用户仅可选择这些值的其中之一)。
<?xml version="1.0"?> <rdf:RDF <rdf:Description </rdf:RDF> |
In the examples above we have talked about "list of values" when describing the container elements. In RDF these "list of values" are called members.
在上面的例子中,我们在描述容器元素时已经讨论了“值的列表”。在 RDF 中,这些“值的列表”被称为成员(members)。
So, we have the following:
因此,我们可以这么说: