QXmlStreamAttribute 类

QXmlStreamAttribute class represents a single XML attribute 更多...

头: #include <QXmlStreamAttribute>
qmake: QT += core
Since: Qt 4.3

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

公共函数

QXmlStreamAttribute ()
QXmlStreamAttribute (const QString & qualifiedName , const QString & value )
QXmlStreamAttribute (const QString & namespaceUri , const QString & name , const QString & value )
QXmlStreamAttribute (const QXmlStreamAttribute & other )
QXmlStreamAttribute (QXmlStreamAttribute && other )
~QXmlStreamAttribute ()
bool isDefault () const
QStringRef name () const
QStringRef namespaceUri () const
QStringRef prefix () const
QStringRef qualifiedName () const
QStringRef value () const
bool operator!= (const QXmlStreamAttribute & other ) const
QXmlStreamAttribute & operator= (QXmlStreamAttribute && other )
QXmlStreamAttribute & operator= (const QXmlStreamAttribute & other )
bool operator== (const QXmlStreamAttribute & other ) const

详细描述

QXmlStreamAttribute class represents a single XML attribute

An attribute consists of an optionally empty namespaceUri (), a name (), a value (), and an isDefault () attribute.

The raw XML attribute name is returned as qualifiedName ().

成员函数文档编制

QXmlStreamAttribute:: QXmlStreamAttribute ()

Creates an empty attribute.

QXmlStreamAttribute:: QXmlStreamAttribute (const QString & qualifiedName , const QString & value )

Constructs an attribute with qualified name qualifiedName and value value .

QXmlStreamAttribute:: QXmlStreamAttribute (const QString & namespaceUri , const QString & name , const QString & value )

Constructs an attribute in the namespace described with namespaceUri with name and value value .

QXmlStreamAttribute:: QXmlStreamAttribute (const QXmlStreamAttribute & other )

Creates a copy of other .

QXmlStreamAttribute:: QXmlStreamAttribute ( QXmlStreamAttribute && other )

移动拷贝构造函数。

QXmlStreamAttribute:: ~QXmlStreamAttribute ()

Destructs an attribute.

bool QXmlStreamAttribute:: isDefault () const

返回 true if the parser added this attribute with a default value following an ATTLIST declaration in the DTD; otherwise returns false .

QStringRef QXmlStreamAttribute:: name () const

Returns the attribute's local name.

QStringRef QXmlStreamAttribute:: namespaceUri () const

Returns the attribute's resolved namespaceUri, or an empty string reference if the attribute does not have a defined namespace.

QStringRef QXmlStreamAttribute:: prefix () const

Returns the attribute's namespace prefix.

该函数在 Qt 4.4 引入。

另请参阅 name () 和 qualifiedName ().

QStringRef QXmlStreamAttribute:: qualifiedName () const

Returns the attribute's qualified name.

A qualified name is the raw name of an attribute in the XML data. It consists of the namespace prefix (), followed by colon, followed by the attribute's local name (). Since the namespace prefix is not unique (the same prefix can point to different namespaces and different prefixes can point to the same namespace), you shouldn't use qualifiedName(), but the resolved namespaceUri () and the attribute's local name ().

QStringRef QXmlStreamAttribute:: value () const

Returns the attribute's value.

bool QXmlStreamAttribute:: operator!= (const QXmlStreamAttribute & other ) const

Compares this attribute with other 并返回 true if they are not equal; otherwise returns false .

QXmlStreamAttribute &QXmlStreamAttribute:: operator= ( QXmlStreamAttribute && other )

移动赋值运算符。

QXmlStreamAttribute &QXmlStreamAttribute:: operator= (const QXmlStreamAttribute & other )

赋值 other to this attribute.

bool QXmlStreamAttribute:: operator== (const QXmlStreamAttribute & other ) const

Compares this attribute with other 并返回 true if they are equal; otherwise returns false .