QDomNodeList 类

The QDomNodeList 类是列表化的 QDomNode 对象。 更多...

头: #include <QDomNodeList>
qmake: QT += xml

注意: 此类的所有函数 可重入 .

公共函数

QDomNodeList ()
QDomNodeList (const QDomNodeList & n )
~QDomNodeList ()
QDomNode at (int index ) const
int count () const
bool isEmpty () const
QDomNode item (int index ) const
int length () const
int size () const
bool operator!= (const QDomNodeList & n ) const
QDomNodeList & operator= (const QDomNodeList & n )
bool operator== (const QDomNodeList & n ) const

详细描述

The QDomNodeList 类是列表化的 QDomNode 对象。

列表的获得可以通过 QDomDocument::elementsByTagName () 和 QDomNode::childNodes ()。DOM (文档对象模型) 要求这些列表是 "实时" 的:每当改变底层文档时,会更新列表内容。

可以从列表获取特定节点采用 item ()。列表项数的返回是通过 length ().

有关文档对象模型的进一步信息,见 级别 1 and 级别 2 核心 。有关 DOM 实现的更一般介绍,见 QDomDocument 文档编制。

另请参阅 QDomNode::childNodes () 和 QDomDocument::elementsByTagName ().

成员函数文档编制

QDomNodeList:: QDomNodeList ()

创建空节点列表。

QDomNodeList:: QDomNodeList (const QDomNodeList & n )

构造副本为 n .

QDomNodeList:: ~QDomNodeList ()

销毁对象并释放其资源。

QDomNode QDomNodeList:: at ( int index ) const

提供此函数是为 Qt API 一致性。它相当于 item ().

index 为负或者若 index >= length () 则返回 null 节点 (即:节点的 QDomNode::isNull () 返回 true)。

int QDomNodeList:: count () const

提供此函数是为 Qt API 一致性。它相当于 length ().

bool QDomNodeList:: isEmpty () const

返回 true 若列表不包含项;否则返回 false 。此函数是为 Qt API 一致性提供的。

QDomNode QDomNodeList:: item ( int index ) const

返回节点在位置 index .

index 为负或者若 index >= length () 则返回 null 节点 (即:节点的 QDomNode::isNull () 返回 true)。

另请参阅 length ().

int QDomNodeList:: length () const

返回列表节点数。

int QDomNodeList:: size () const

提供此函数是为 Qt API 一致性。它相当于 length ().

bool QDomNodeList:: operator!= (const QDomNodeList & n ) const

返回 true 节点列表 n 和此节点列表不相等;否则返回 false .

QDomNodeList &QDomNodeList:: operator= (const QDomNodeList & n )

赋值 n 到此节点列表。

bool QDomNodeList:: operator== (const QDomNodeList & n ) const

返回 true 若节点列表 n 和此节点列表相等;否则返回 false .