如何return null QDomElement?
How to return null QDomElement?
Qt XML 操作有点奇怪 - 尽管 QDomElement 对象引用它们在文档中的表示,但它们不是指针。
表示"null"元素,使用isNull
方法。如何在 isNull
上创建 QDomElement
returns true
?
QDomElement
继承 QDomNode
。文档指出:
bool QDomNode::isNull() const
Returns true if this node is null (i.e. if it has no type or
contents); otherwise returns false.
还有
QDomNode::QDomNode()
Constructs a null node.
在你的例子中你只需要returnQDomElement()
作为空节点。
Qt XML 操作有点奇怪 - 尽管 QDomElement 对象引用它们在文档中的表示,但它们不是指针。
表示"null"元素,使用isNull
方法。如何在 isNull
上创建 QDomElement
returns true
?
QDomElement
继承 QDomNode
。文档指出:
bool QDomNode::isNull() const
Returns true if this node is null (i.e. if it has no type or contents); otherwise returns false.
还有
QDomNode::QDomNode()
Constructs a null node.
在你的例子中你只需要returnQDomElement()
作为空节点。