QScriptString Class

The QScriptString class acts as a handle to "interned" strings in a QScriptEngine . 更多...

頭: #include <QScriptString>
qmake: QT += script
Since: Qt 4.4

公共函數

QScriptString ()
QScriptString (const QScriptString & other )
~QScriptString ()
bool isValid () const
quint32 toArrayIndex (bool * ok = nullptr) const
QString toString () const
QString operator QString () const
bool operator!= (const QScriptString & other ) const
QScriptString & operator= (const QScriptString & other )
bool operator== (const QScriptString & other ) const

詳細描述

The QScriptString class acts as a handle to "interned" strings in a QScriptEngine .

QScriptString can be used to achieve faster (repeated) property getting/setting, and comparison of property names, of script objects.

To get a QScriptString representation of a string, pass the string to QScriptEngine::toStringHandle (). The typical usage pattern is to register one or more pre-defined strings when setting up your script environment, then subsequently use the relevant QScriptString as argument to e.g. QScriptValue::property ().

調用 toString () function to obtain the string that a QScriptString represents.

調用 toArrayIndex () function to convert a QScriptString to an array index. This is useful when using QScriptClass to implement array-like objects.

成員函數文檔編製

QScriptString:: QScriptString ()

構造無效 QScriptString .

QScriptString:: QScriptString (const QScriptString & other )

構造新的 QScriptString that is a copy of other .

QScriptString:: ~QScriptString ()

銷毀此 QScriptString .

bool QScriptString:: isValid () const

返迴 true,若此 QScriptString is valid; otherwise returns false.

quint32 QScriptString:: toArrayIndex ( bool * ok = nullptr) const

Attempts to convert this QScriptString to a Qt Script array index, and returns the result.

If a conversion error occurs, * ok is set to false; otherwise * ok 被設為 true。

該函數在 Qt 4.6 引入。

QString QScriptString:: toString () const

Returns the string that this QScriptString represents, or a null string if this QScriptString is not valid.

另請參閱 isValid ().

QString QScriptString:: operator QString () const

Returns the string that this QScriptString represents, or a null string if this QScriptString is not valid.

另請參閱 toString ().

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

返迴 true,若此 QScriptString 不等於 other ;否則返迴 false。

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

賦值 other value to this QScriptString .

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

返迴 true,若此 QScriptString 等於 other ;否則返迴 false。