IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QVariant Class

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QVariant Class

  • Header: QVariant

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Core)

    target_link_libraries(mytarget PRIVATE Qt6::Core)

  • qmake: QT += core

  • Group: QVariant is part of objectmodel, Implicitly Shared Classes

Detailed Description

Because C++ forbids unions from including types that have non-default constructors or destructors, most interesting Qt classes cannot be used in unions. Without QVariant, this would be a problem for QObject::property() and for database work, etc.

A QVariant object holds a single value of a single typeId() at a time. (Some types are multi-valued, for example a string list.) You can find out what type, T, the variant holds, convert it to a different type using convert(), get its value using one of the toT() functions (e.g., toSize()), and check whether the type can be converted to a particular type using canConvert().

The methods named toT() (e.g., toInt(), toString()) are const. If you ask for the stored type, they return a copy of the stored object. If you ask for a type that can be generated from the stored type, toT() copies and converts and leaves the object itself unchanged. If you ask for a type that cannot be generated from the stored type, the result depends on the type; see the function documentation for details.

Here is some example code to demonstrate the use of QVariant:

 
Sélectionnez
QDataStream out(...);
QVariant v(123);                // The variant now contains an int
int x = v.toInt();              // x = 123
out << v;                       // Writes a type tag and an int to out
v = QVariant(tr("hello"));      // The variant now contains a QString
int y = v.toInt();              // y = 0 since v cannot be converted to an int
QString s = v.toString();       // s = tr("hello")  (see QObject::tr())
out << v;                       // Writes a type tag and a QString to out
...
QDataStream in(...);            // (opening the previously written stream)
in >> v;                        // Reads an Int variant
int z = v.toInt();              // z = 123
qDebug("Type is %s",            // prints "Type is int"
        v.typeName());
v = v.toInt() + 100;            // The variant now holds the value 223
v = QVariant(QStringList());    // The variant now holds a QStringList

You can even store QList<QVariant> and QMap<QString, QVariant> values in a variant, so you can easily construct arbitrarily complex data structures of arbitrary types. This is very powerful and versatile, but may prove less memory and speed efficient than storing specific types in standard data structures.

QVariant also supports the notion of null values. A variant is null if the variant contains no initialized value, or contains a null pointer.

 
Sélectionnez
QVariant x;                                // x.isNull() == true
QVariant y = QVariant::fromValue(nullptr); // y.isNull() == true

QVariant can be extended to support other types than those mentioned in the QMetaType::Type enum. See Creating Custom Qt Types for details.

A Note on GUI Types

Because QVariant is part of the Qt Core module, it cannot provide conversion functions to data types defined in Qt GUI, such as QColor, QImage, and QPixmap. In other words, there is no toColor() function. Instead, you can use the QVariant::value() or the qvariant_cast() template function. For example:

 
Sélectionnez
QVariant variant;
...
QColor color = variant.value&lt;QColor&gt;();

The inverse conversion (e.g., from QColor to QVariant) is automatic for all data types supported by QVariant, including GUI-related types:

 
Sélectionnez
QColor color = palette().background().color();
QVariant variant = color;

Using canConvert() and convert() Consecutively

When using canConvert() and convert() consecutively, it is possible for canConvert() to return true, but convert() to return false. This is typically because canConvert() only reports the general ability of QVariant to convert between types given suitable data; it is still possible to supply data which cannot actually be converted.

For example, canConvert(QMetaType::fromType<int>()) would return true when called on a variant containing a string because, in principle, QVariant is able to convert strings of numbers to integers. However, if the string contains non-numeric characters, it cannot be converted to an integer, and any attempt to convert it will fail. Hence, it is important to have both functions return true for a successful conversion.

See Also

See also QMetaType

Member Function Documentation

 

int QVariant::typeId() const

int QVariant::userType() const

Returns the storage type of the value stored in the variant. This is the same as metaType().id().

See Also

See also metaType()

const void *QVariant::constData() const

const void *QVariant::data() const

Returns a pointer to the contained object as a generic void* that cannot be written to.

See Also

See also QMetaType

QVariant::QVariant()

Constructs an invalid variant.

[explicit] QVariant::QVariant(QMetaType type, const void *copy = nullptr)

Constructs variant of type type, and initializes with copy if copy is not nullptr.

Note that you have to pass the address of the variable you want stored.

Usually, you never have to use this constructor, use QVariant::fromValue() instead to construct variants from the pointer types represented by QMetaType::VoidStar, and QMetaType::QObjectStar.

If type does not support copy and default construction, the variant will be invalid.

See Also

QVariant::QVariant(const QEasingCurve &val)

Constructs a new variant with an easing curve value, val.

[since 5.0] QVariant::QVariant(const QJsonDocument &val)

Constructs a new variant with a json document value, val.

This function was introduced in Qt 5.0.

[since 5.5] QVariant::QVariant(const QPersistentModelIndex &val)

Constructs a new variant with a QPersistentModelIndex value, val.

This function was introduced in Qt 5.5.

QVariant::QVariant(const char *val)

Constructs a new variant with a string value of val. The variant creates a deep copy of val into a QString assuming UTF-8 encoding on the input val.

Note that val is converted to a QString for storing in the variant and QVariant::userType() will return QMetaType::QString for the variant.

You can disable this operator by defining QT_NO_CAST_FROM_ASCII when you compile your applications.

QVariant::QVariant(QLatin1StringView val)

Constructs a new variant with a string value, val.

[default, since 5.0] QVariant::QVariant(const QUuid &val)

Constructs a new variant with an uuid value, val.

This function was introduced in Qt 5.0.

[default] QVariant::QVariant(const QPoint &val)

Constructs a new variant with a point value of val.

[default] QVariant::QVariant(const QPointF &val)

Constructs a new variant with a point value of val.

[default] QVariant::QVariant(const QRectF &val)

Constructs a new variant with a rect value of val.

[default] QVariant::QVariant(const QLineF &val)

Constructs a new variant with a line value of val.

[default] QVariant::QVariant(const QLine &val)

Constructs a new variant with a line value of val.

[default] QVariant::QVariant(const QRect &val)

Constructs a new variant with a rect value of val.

[default] QVariant::QVariant(const QSize &val)

Constructs a new variant with a size value of val.

[default] QVariant::QVariant(const QSizeF &val)

Constructs a new variant with a size value of val.

QVariant::QVariant(int val)

Constructs a new variant with an integer value, val.

QVariant::QVariant(uint val)

Constructs a new variant with an unsigned integer value, val.

QVariant::QVariant(qlonglong val)

Constructs a new variant with a long long integer value, val.

QVariant::QVariant(qulonglong val)

Constructs a new variant with an unsigned long long integer value, val.

QVariant::QVariant(bool val)

Constructs a new variant with a boolean value, val.

QVariant::QVariant(double val)

Constructs a new variant with a floating point value, val.

QVariant::QVariant(float val)

Constructs a new variant with a floating point value, val.

QVariant::QVariant(QChar c)

Constructs a new variant with a char value, c.

QVariant::QVariant(QDate val)

Constructs a new variant with a date value, val.

QVariant::QVariant(QTime val)

Constructs a new variant with a time value, val.

QVariant::QVariant(const QBitArray &val)

Constructs a new variant with a bitarray value, val.

QVariant::QVariant(const QByteArray &val)

Constructs a new variant with a bytearray value, val.

QVariant::QVariant(const QDateTime &val)

Constructs a new variant with a date/time value, val.

QVariant::QVariant(const QHash<QString, QVariant> &val)

Constructs a new variant with a hash of QVariants, val.

[since 5.0] QVariant::QVariant(const QJsonArray &val)

Constructs a new variant with a json array value, val.

This function was introduced in Qt 5.0.

[since 5.0] QVariant::QVariant(const QJsonObject &val)

Constructs a new variant with a json object value, val.

This function was introduced in Qt 5.0.

QVariant::QVariant(const QList<QVariant> &val)

Constructs a new variant with a list value, val.

QVariant::QVariant(const QLocale &l)

Constructs a new variant with a locale value, l.

QVariant::QVariant(const QMap<QString, QVariant> &val)

Constructs a new variant with a map of QVariants, val.

[since 5.0] QVariant::QVariant(const QRegularExpression &re)

Constructs a new variant with the regular expression value re.

This function was introduced in Qt 5.0.

QVariant::QVariant(const QString &val)

Constructs a new variant with a string value, val.

QVariant::QVariant(const QStringList &val)

Constructs a new variant with a string list value, val.

QVariant::QVariant(const QUrl &val)

Constructs a new variant with a url value of val.

[since 5.0] QVariant::QVariant(const QJsonValue &val)

Constructs a new variant with a json value, val.

This function was introduced in Qt 5.0.

[since 5.0] QVariant::QVariant(const QModelIndex &val)

Constructs a new variant with a QModelIndex value, val.

This function was introduced in Qt 5.0.

QVariant::QVariant(const QVariant &p)

Constructs a copy of the variant, p, passed as the argument to this constructor.

[since 5.2] QVariant::QVariant(QVariant &&other)

Move-constructs a QVariant instance, making it point at the same object that other was pointing to.

This function was introduced in Qt 5.2.

QVariant::~QVariant()

Destroys the QVariant and the contained object.

Note that subclasses that reimplement clear() should reimplement the destructor to call clear(). This destructor calls clear(), but because it is the destructor, QVariant::clear() is called rather than a subclass's clear().

[since 6.0] bool QVariant::canConvert(QMetaType type) const

Returns true if the variant's type can be cast to the requested type, type. Such casting is done automatically when calling the toInt(), toBool(), ... methods.

This function was introduced in Qt 6.0.

See Also

bool QVariant::canConvert() const

Returns true if the variant can be converted to the template type T, otherwise false.

Example:

 
Sélectionnez
QVariant v = 42;

v.canConvert&lt;int&gt;();              // returns true
v.canConvert&lt;QString&gt;();          // returns true

MyCustomStruct s;
v.setValue(s);

v.canConvert&lt;int&gt;();              // returns false
v.canConvert&lt;MyCustomStruct&gt;();   // returns true

A QVariant containing a pointer to a type derived from QObject will also return true for this function if a qobject_cast to the template type T would succeed. Note that this only works for QObject subclasses which use the Q_OBJECT macro.

See Also

See also convert()

bool QVariant::canView() const

Returns true if a mutable view of the template type T can be created on this variant, otherwise false.

See Also

See also value()

void QVariant::clear()

Convert this variant to type QMetaType::UnknownType and free up any resources used.

[static, since 6.0] QPartialOrdering QVariant::compare(const QVariant &lhs, const QVariant &rhs)

Compares the objects at lhs and rhs for ordering.

Returns QPartialOrdering::Unordered if comparison is not supported or the values are unordered. Otherwise, returns QPartialOrdering::Less, QPartialOrdering::Equivalent or QPartialOrdering::Greater if lhs is less than, equivalent to or greater than rhs, respectively.

If the variants contain data with a different metatype, the values are considered unordered unless they are both of numeric or pointer types, where regular numeric or pointer comparison rules will be used.

: If a numeric comparison is done and at least one value is NaN, QPartialOrdering::Unordered is returned.

If both variants contain data of the same metatype, the method will use the QMetaType::compare method to determine the ordering of the two variants, which can also indicate that it can't establish an ordering between the two values.

This function was introduced in Qt 6.0.

See Also

[since 6.0] bool QVariant::convert(QMetaType targetType)

Casts the variant to the requested type, targetType. If the cast cannot be done, the variant is still changed to the requested type, but is left in a cleared null state similar to that constructed by QVariant(Type).

Returns true if the current type of the variant was successfully cast; otherwise returns false.

A QVariant containing a pointer to a type derived from QObject will also convert and return true for this function if a qobject_cast to the type described by targetType would succeed. Note that this only works for QObject subclasses which use the Q_OBJECT macro.

converting QVariants that are null due to not being initialized or having failed a previous conversion will always fail, changing the type, remaining null, and returning false.

This function was introduced in Qt 6.0.

See Also

See also canConvert(), clear()

void *QVariant::data()

Returns a pointer to the contained object as a generic void* that can be written to.

This function detaches the QVariant. When called on a null-QVariant, the QVariant will not be null after the call.

See Also

See also QMetaType

[static, since 5.11] QVariant QVariant::fromStdVariant(const std::variant<Types...> &value)

Returns a QVariant with the type and value of the active variant of value. If the active type is std::monostate a default QVariant is returned.

With this method you do not need to register the variant as a Qt metatype, since the std::variant is resolved before being stored. The component types should be registered however.

This function was introduced in Qt 5.11.

See Also

See also fromValue()

[static] QVariant QVariant::fromValue(const T &value)

Returns a QVariant containing a copy of value. Behaves exactly like setValue() otherwise.

Example:

 
Sélectionnez
MyCustomStruct s;
return QVariant::fromValue(s);
See Also

See also setValue(), value()

bool QVariant::isNull() const

Returns true if this is a null variant, false otherwise.

A variant is considered null if it contains no initialized value or a null pointer.

This behavior has been changed from Qt 5, where isNull() would also return true if the variant contained an object of a builtin type with an isNull() method that returned true for that object.

See Also

See also convert()

bool QVariant::isValid() const

Returns true if the storage type of this variant is not QMetaType::UnknownType; otherwise returns false.

[since 6.0] QMetaType QVariant::metaType() const

Returns the QMetaType of the value stored in the variant.

This function was introduced in Qt 6.0.

void QVariant::setValue(T &&value)

Stores a copy of value. If T is a type that QVariant doesn't support, QMetaType is used to store the value. A compile error will occur if QMetaType doesn't handle the type.

Example:

 
Sélectionnez
QVariant v;

v.setValue(5);
int i = v.toInt();         // i is now 5
QString s = v.toString();  // s is now "5"

MyCustomStruct c;
v.setValue(c);

...

MyCustomStruct c2 = v.value&lt;MyCustomStruct&gt;();
See Also

See also value(), fromValue(), canConvert()

void QVariant::setValue(const QVariant &value)

Copies value over this QVariant. It is equivalent to simply assigning value to this QVariant.

void QVariant::setValue(QVariant &&value)

Moves value over this QVariant. It is equivalent to simply move assigning value to this QVariant.

void QVariant::swap(QVariant &other)

Swaps variant other with this variant. This operation is very fast and never fails.

QBitArray QVariant::toBitArray() const

Returns the variant as a QBitArray if the variant has userType() QMetaType::QBitArray; otherwise returns an empty bit array.

See Also

See also canConvert(), convert()

bool QVariant::toBool() const

Returns the variant as a bool if the variant has userType() Bool.

Returns true if the variant has userType() QMetaType::Bool, QMetaType::QChar, QMetaType::Double, QMetaType::Int, QMetaType::LongLong, QMetaType::UInt, or QMetaType::ULongLong and the value is non-zero, or if the variant has type QMetaType::QString or QMetaType::QByteArray and its lower-case content is not one of the following: empty, "0" or "false"; otherwise returns false.

See Also

See also canConvert(), convert()

QByteArray QVariant::toByteArray() const

Returns the variant as a QByteArray if the variant has userType() QMetaType::QByteArray or QMetaType::QString (converted using QString::fromUtf8()); otherwise returns an empty byte array.

See Also

See also canConvert(), convert()

QChar QVariant::toChar() const

Returns the variant as a QChar if the variant has userType() QMetaType::QChar, QMetaType::Int, or QMetaType::UInt; otherwise returns an invalid QChar.

See Also

See also canConvert(), convert()

QDate QVariant::toDate() const

Returns the variant as a QDate if the variant has userType() QMetaType::QDate, QMetaType::QDateTime, or QMetaType::QString; otherwise returns an invalid date.

If the type() is QMetaType::QString, an invalid date will be returned if the string cannot be parsed as a Qt::ISODate format date.

See Also

See also canConvert(), convert()

QDateTime QVariant::toDateTime() const

Returns the variant as a QDateTime if the variant has userType() QMetaType::QDateTime, QMetaType::QDate, or QMetaType::QString; otherwise returns an invalid date/time.

If the type() is QMetaType::QString, an invalid date/time will be returned if the string cannot be parsed as a Qt::ISODate format date/time.

See Also

See also canConvert(), convert()

double QVariant::toDouble(bool *ok = nullptr) const

Returns the variant as a double if the variant has userType() QMetaType::Double, QMetaType::Float, QMetaType::Bool, QMetaType::QByteArray, QMetaType::Int, QMetaType::LongLong, QMetaType::QString, QMetaType::UInt, or QMetaType::ULongLong; otherwise returns 0.0.

If ok is non-null: *ok is set to true if the value could be converted to a double; otherwise *ok is set to false.

See Also

See also canConvert(), convert()

QEasingCurve QVariant::toEasingCurve() const

Returns the variant as a QEasingCurve if the variant has userType() QMetaType::QEasingCurve; otherwise returns a default easing curve.

See Also

See also canConvert(), convert()

float QVariant::toFloat(bool *ok = nullptr) const

Returns the variant as a float if the variant has userType() QMetaType::Double, QMetaType::Float, QMetaType::Bool, QMetaType::QByteArray, QMetaType::Int, QMetaType::LongLong, QMetaType::QString, QMetaType::UInt, or QMetaType::ULongLong; otherwise returns 0.0.

If ok is non-null: *ok is set to true if the value could be converted to a double; otherwise *ok is set to false.

See Also

See also canConvert(), convert()

QHash<QString, QVariant> QVariant::toHash() const

Returns the variant as a QHash<QString, QVariant> if the variant has type() QMetaType::QVariantHash; otherwise returns an empty map.

See Also

See also canConvert(), convert()

int QVariant::toInt(bool *ok = nullptr) const

Returns the variant as an int if the variant has userType() QMetaType::Int, QMetaType::Bool, QMetaType::QByteArray, QMetaType::QChar, QMetaType::Double, QMetaType::LongLong, QMetaType::QString, QMetaType::UInt, or QMetaType::ULongLong; otherwise returns 0.

If ok is non-null: *ok is set to true if the value could be converted to an int; otherwise *ok is set to false.

Warning: If the value is convertible to a QMetaType::LongLong but is too large to be represented in an int, the resulting arithmetic overflow will not be reflected in ok. A simple workaround is to use QString::toInt().

See Also

See also canConvert(), convert()

[since 5.0] QJsonArray QVariant::toJsonArray() const

Returns the variant as a QJsonArray if the variant has userType() QJsonArray; otherwise returns a default constructed QJsonArray.

This function was introduced in Qt 5.0.

See Also

See also canConvert(), convert()

[since 5.0] QJsonDocument QVariant::toJsonDocument() const

Returns the variant as a QJsonDocument if the variant has userType() QJsonDocument; otherwise returns a default constructed QJsonDocument.

This function was introduced in Qt 5.0.

See Also

See also canConvert(), convert()

[since 5.0] QJsonObject QVariant::toJsonObject() const

Returns the variant as a QJsonObject if the variant has userType() QJsonObject; otherwise returns a default constructed QJsonObject.

This function was introduced in Qt 5.0.

See Also

See also canConvert(), convert()

[since 5.0] QJsonValue QVariant::toJsonValue() const

Returns the variant as a QJsonValue if the variant has userType() QJsonValue; otherwise returns a default constructed QJsonValue.

This function was introduced in Qt 5.0.

See Also

See also canConvert(), convert()

QLine QVariant::toLine() const

Returns the variant as a QLine if the variant has userType() QMetaType::QLine; otherwise returns an invalid QLine.

See Also

See also canConvert(), convert()

QLineF QVariant::toLineF() const

Returns the variant as a QLineF if the variant has userType() QMetaType::QLineF; otherwise returns an invalid QLineF.

See Also

See also canConvert(), convert()

QList<QVariant> QVariant::toList() const

Returns the variant as a QVariantList if the variant has userType() QMetaType::QVariantList. If it doesn't, QVariant will attempt to convert the type to a list and then return it. This will succeed for any type that has registered a converter to QVariantList or which was declared as a sequential container using Q_DECLARE_SEQUENTIAL_CONTAINER_METATYPE. If none of those conditions are true, this function will return an empty list.

See Also

See also canConvert(), convert()

QLocale QVariant::toLocale() const

Returns the variant as a QLocale if the variant has userType() QMetaType::QLocale; otherwise returns an invalid QLocale.

See Also

See also canConvert(), convert()

qlonglong QVariant::toLongLong(bool *ok = nullptr) const

Returns the variant as a long long int if the variant has userType() QMetaType::LongLong, QMetaType::Bool, QMetaType::QByteArray, QMetaType::QChar, QMetaType::Double, QMetaType::Int, QMetaType::QString, QMetaType::UInt, or QMetaType::ULongLong; otherwise returns 0.

If ok is non-null: *ok is set to true if the value could be converted to an int; otherwise *ok is set to false.

See Also

See also canConvert(), convert()

QMap<QString, QVariant> QVariant::toMap() const

Returns the variant as a QVariantMap if the variant has type() QMetaType::QVariantMap. If it doesn't, QVariant will attempt to convert the type to a map and then return it. This will succeed for any type that has registered a converter to QVariantMap or which was declared as a associative container using Q_DECLARE_ASSOCIATIVE_CONTAINER_METATYPE. If none of those conditions are true, this function will return an empty map.

See Also

See also canConvert(), convert()

[since 5.0] QModelIndex QVariant::toModelIndex() const

Returns the variant as a QModelIndex if the variant has userType() QModelIndex; otherwise returns a default constructed QModelIndex.

This function was introduced in Qt 5.0.

See Also

[since 5.5] QPersistentModelIndex QVariant::toPersistentModelIndex() const

Returns the variant as a QPersistentModelIndex if the variant has userType() QPersistentModelIndex; otherwise returns a default constructed QPersistentModelIndex.

This function was introduced in Qt 5.5.

See Also

See also canConvert(), convert(), toModelIndex()

QPoint QVariant::toPoint() const

Returns the variant as a QPoint if the variant has userType() QMetaType::QPoint or QMetaType::QPointF; otherwise returns a null QPoint.

See Also

See also canConvert(), convert()

QPointF QVariant::toPointF() const

Returns the variant as a QPointF if the variant has userType() QMetaType::QPoint or QMetaType::QPointF; otherwise returns a null QPointF.

See Also

See also canConvert(), convert()

qreal QVariant::toReal(bool *ok = nullptr) const

Returns the variant as a qreal if the variant has userType() QMetaType::Double, QMetaType::Float, QMetaType::Bool, QMetaType::QByteArray, QMetaType::Int, QMetaType::LongLong, QMetaType::QString, QMetaType::UInt, or QMetaType::ULongLong; otherwise returns 0.0.

If ok is non-null: *ok is set to true if the value could be converted to a double; otherwise *ok is set to false.

See Also

See also canConvert(), convert()

QRect QVariant::toRect() const

Returns the variant as a QRect if the variant has userType() QMetaType::QRect; otherwise returns an invalid QRect.

See Also

See also canConvert(), convert()

QRectF QVariant::toRectF() const

Returns the variant as a QRectF if the variant has userType() QMetaType::QRect or QMetaType::QRectF; otherwise returns an invalid QRectF.

See Also

See also canConvert(), convert()

[since 5.0] QRegularExpression QVariant::toRegularExpression() const

Returns the variant as a QRegularExpression if the variant has userType() QRegularExpression; otherwise returns an empty QRegularExpression.

This function was introduced in Qt 5.0.

See Also

See also canConvert(), convert()

QSize QVariant::toSize() const

Returns the variant as a QSize if the variant has userType() QMetaType::QSize; otherwise returns an invalid QSize.

See Also

See also canConvert(), convert()

QSizeF QVariant::toSizeF() const

Returns the variant as a QSizeF if the variant has userType() QMetaType::QSizeF; otherwise returns an invalid QSizeF.

See Also

See also canConvert(), convert()

QString QVariant::toString() const

Returns the variant as a QString if the variant has a userType() including, but not limited to:

QMetaType::QString, QMetaType::Bool, QMetaType::QByteArray, QMetaType::QChar, QMetaType::QDate, QMetaType::QDateTime, QMetaType::Double, QMetaType::Int, QMetaType::LongLong, QMetaType::QStringList, QMetaType::QTime, QMetaType::UInt, or QMetaType::ULongLong.

Calling QVariant::toString() on an unsupported variant returns an empty string.

See Also

See also canConvert(), convert()

QStringList QVariant::toStringList() const

Returns the variant as a QStringList if the variant has userType() QMetaType::QStringList, QMetaType::QString, or QMetaType::QVariantList of a type that can be converted to QString; otherwise returns an empty list.

See Also

See also canConvert(), convert()

QTime QVariant::toTime() const

Returns the variant as a QTime if the variant has userType() QMetaType::QTime, QMetaType::QDateTime, or QMetaType::QString; otherwise returns an invalid time.

If the type() is QMetaType::QString, an invalid time will be returned if the string cannot be parsed as a Qt::ISODate format time.

See Also

See also canConvert(), convert()

uint QVariant::toUInt(bool *ok = nullptr) const

Returns the variant as an unsigned int if the variant has userType() QMetaType::UInt, QMetaType::Bool, QMetaType::QByteArray, QMetaType::QChar, QMetaType::Double, QMetaType::Int, QMetaType::LongLong, QMetaType::QString, or QMetaType::ULongLong; otherwise returns 0.

If ok is non-null: *ok is set to true if the value could be converted to an unsigned int; otherwise *ok is set to false.

Warning: If the value is convertible to a QMetaType::ULongLong but is too large to be represented in an unsigned int, the resulting arithmetic overflow will not be reflected in ok. A simple workaround is to use QString::toUInt().

See Also

See also canConvert(), convert()

qulonglong QVariant::toULongLong(bool *ok = nullptr) const

Returns the variant as an unsigned long long int if the variant has type() QMetaType::ULongLong, QMetaType::Bool, QMetaType::QByteArray, QMetaType::QChar, QMetaType::Double, QMetaType::Int, QMetaType::LongLong, QMetaType::QString, or QMetaType::UInt; otherwise returns 0.

If ok is non-null: *ok is set to true if the value could be converted to an int; otherwise *ok is set to false.

See Also

See also canConvert(), convert()

QUrl QVariant::toUrl() const

Returns the variant as a QUrl if the variant has userType() QMetaType::QUrl; otherwise returns an invalid QUrl.

See Also

See also canConvert(), convert()

[since 5.0] QUuid QVariant::toUuid() const

Returns the variant as a QUuid if the variant has type() QMetaType::QUuid, QMetaType::QByteArray or QMetaType::QString; otherwise returns a default-constructed QUuid.

This function was introduced in Qt 5.0.

See Also

See also canConvert(), convert()

const char *QVariant::typeName() const

Returns the name of the type stored in the variant. The returned strings describe the C++ datatype used to store the data: for example, "QFont", "QString", or "QVariantList". An Invalid variant returns 0.

T QVariant::value() const

Returns the stored value converted to the template type T. Call canConvert() to find out whether a type can be converted. If the value cannot be converted, a default-constructed value will be returned.

If the type T is supported by QVariant, this function behaves exactly as toString(), toInt() etc.

Example:

 
Sélectionnez
QVariant v;

MyCustomStruct c;
if (v.canConvert&lt;MyCustomStruct&gt;())
    c = v.value&lt;MyCustomStruct&gt;();

v = 7;
int i = v.value&lt;int&gt;();                        // same as v.toInt()
QString s = v.value&lt;QString&gt;();                // same as v.toString(), s is now "7"
MyCustomStruct c2 = v.value&lt;MyCustomStruct&gt;(); // conversion failed, c2 is empty

If the QVariant contains a pointer to a type derived from QObject then T may be any QObject type. If the pointer stored in the QVariant can be qobject_cast to T, then that result is returned. Otherwise nullptr is returned. Note that this only works for QObject subclasses which use the Q_OBJECT macro.

If the QVariant contains a sequential container and T is QVariantList, the elements of the container will be converted into QVariants and returned as a QVariantList.

 
Sélectionnez
QList&lt;int&gt; intList = {7, 11, 42};

QVariant variant = QVariant::fromValue(intList);
if (variant.canConvert&lt;QVariantList&gt;()) {
    QSequentialIterable iterable = variant.value&lt;QSequentialIterable&gt;();
    // Can use foreach:
    foreach (const QVariant &amp;v, iterable) {
        qDebug() &lt;&lt; v;
    }
    // Can use C++11 range-for:
    for (const QVariant &amp;v : iterable) {
        qDebug() &lt;&lt; v;
    }
    // Can use iterators:
    QSequentialIterable::const_iterator it = iterable.begin();
    const QSequentialIterable::const_iterator end = iterable.end();
    for ( ; it != end; ++it) {
        qDebug() &lt;&lt; *it;
    }
}
See Also

T QVariant::view()

Returns a mutable view of template type T on the stored value. Call canView() to find out whether such a view is supported. If no such view can be created, returns the stored value converted to the template type T. Call canConvert() to find out whether a type can be converted. If the value can neither be viewed nor converted, a default-constructed value will be returned.

See Also

QVariant &QVariant::operator=(const QVariant &variant)

Assigns the value of the variant variant to this variant.

[since 5.2] QVariant &QVariant::operator=(QVariant &&other)

Move-assigns other to this QVariant instance.

This function was introduced in Qt 5.2.

Related Non-Members

 

[alias] QVariantHash

Synonym for QHash<QString, QVariant>.

[alias] QVariantList

Synonym for QList<QVariant>.

[alias] QVariantMap

Synonym for QMap<QString, QVariant>.

T qvariant_cast(const QVariant &value)

Returns the given value converted to the template type T.

This function is equivalent to QVariant::value().

See Also

See also QVariant::value()

bool operator!=(const QVariant &v1, const QVariant &v2)

Returns false if v1 and v2 are equal; otherwise returns true.

QVariant uses the equality operator of the type() contained to check for equality.

Variants of different types will always compare as not equal with a few exceptions:

  • If both types are numeric types (integers and floatins point numbers) Qt will compare those types using standard C++ type promotion rules.

  • If one type is numeric and the other one a QString, Qt will try to convert the QString to a matching numeric type and if successful compare those.

  • If both variants contain pointers to QObject derived types, QVariant will check whether the types are related and point to the same object.

QDataStream &operator<<(QDataStream &s, const QVariant &p)

Writes a variant p to the stream s.

See Also

bool operator==(const QVariant &v1, const QVariant &v2)

Returns true if v1 and v2 are equal; otherwise returns false.

QVariant uses the equality operator of the type() contained to check for equality.

Variants of different types will always compare as not equal with a few exceptions:

  • If both types are numeric types (integers and floatins point numbers) Qt will compare those types using standard C++ type promotion rules.

  • If one type is numeric and the other one a QString, Qt will try to convert the QString to a matching numeric type and if successful compare those.

  • If both variants contain pointers to QObject derived types, QVariant will check whether the types are related and point to the same object.

The result of the function is not affected by the result of QVariant::isNull, which means that two values can be equal even if one of them is null and another is not.

QDataStream &operator>>(QDataStream &s, QVariant &p)

Reads a variant p from the stream s.

If the stream contains types that aren't the built-in ones (see QMetaType::Type), those types must be registered using qRegisterMetaType() or QMetaType::registerType() before the variant can be properly loaded. If an unregistered type is found, QVariant will set the corrupt flag in the stream, stop processing and print a warning. For example, for QList<int> it would print the following:

QVariant::load: unknown user type with name QList<int>

See Also

Obsolete Members for QVariant

The following members of class QVariant are deprecated. We strongly advise against using them in new code.

Obsolete Member Type Documentation

 
enum QVariant::Type

This enum is deprecated. We strongly advise against using it in new code.

Use QMetaType::Type instead.

This enum type defines the types of variable that a QVariant can contain.

Constant

Value

Description

QVariant::Invalid

QMetaType::UnknownType

no type

QVariant::BitArray

QMetaType::QBitArray

a QBitArray

QVariant::Bitmap

QMetaType::QBitmap

a QBitmap

QVariant::Bool

QMetaType::Bool

a bool

QVariant::Brush

QMetaType::QBrush

a QBrush

QVariant::ByteArray

QMetaType::QByteArray

a QByteArray

QVariant::Char

QMetaType::QChar

a QChar

QVariant::Color

QMetaType::QColor

a QColor

QVariant::Cursor

QMetaType::QCursor

a QCursor

QVariant::Date

QMetaType::QDate

a QDate

QVariant::DateTime

QMetaType::QDateTime

a QDateTime

QVariant::Double

QMetaType::Double

a double

QVariant::EasingCurve

QMetaType::QEasingCurve

a QEasingCurve

QVariant::Uuid

QMetaType::QUuid

a QUuid

QVariant::ModelIndex

QMetaType::QModelIndex

a QModelIndex

QVariant::PersistentModelIndex (since Qt 5.5)

QMetaType::QPersistentModelIndex

a QPersistentModelIndex

QVariant::Font

QMetaType::QFont

a QFont

QVariant::Hash

QMetaType::QVariantHash

a QVariantHash

QVariant::Icon

QMetaType::QIcon

a QIcon

QVariant::Image

QMetaType::QImage

a QImage

QVariant::Int

QMetaType::Int

an int

QVariant::KeySequence

QMetaType::QKeySequence

a QKeySequence

QVariant::Line

QMetaType::QLine

a QLine

QVariant::LineF

QMetaType::QLineF

a QLineF

QVariant::List

QMetaType::QVariantList

a QVariantList

QVariant::Locale

QMetaType::QLocale

a QLocale

QVariant::LongLong

QMetaType::LongLong

a qlonglong

QVariant::Map

QMetaType::QVariantMap

a QVariantMap

QVariant::Transform

QMetaType::QTransform

a QTransform

QVariant::Matrix4x4

QMetaType::QMatrix4x4

a QMatrix4x4

QVariant::Palette

QMetaType::QPalette

a QPalette

QVariant::Pen

QMetaType::QPen

a QPen

QVariant::Pixmap

QMetaType::QPixmap

a QPixmap

QVariant::Point

QMetaType::QPoint

a QPoint

QVariant::PointF

QMetaType::QPointF

a QPointF

QVariant::Polygon

QMetaType::QPolygon

a QPolygon

QVariant::PolygonF

QMetaType::QPolygonF

a QPolygonF

QVariant::Quaternion

QMetaType::QQuaternion

a QQuaternion

QVariant::Rect

QMetaType::QRect

a QRect

QVariant::RectF

QMetaType::QRectF

a QRectF

QVariant::RegularExpression

QMetaType::QRegularExpression

a QRegularExpression

QVariant::Region

QMetaType::QRegion

a QRegion

QVariant::Size

QMetaType::QSize

a QSize

QVariant::SizeF

QMetaType::QSizeF

a QSizeF

QVariant::SizePolicy

QMetaType::QSizePolicy

a QSizePolicy

QVariant::String

QMetaType::QString

a QString

QVariant::StringList

QMetaType::QStringList

a QStringList

QVariant::TextFormat

QMetaType::QTextFormat

a QTextFormat

QVariant::TextLength

QMetaType::QTextLength

a QTextLength

QVariant::Time

QMetaType::QTime

a QTime

QVariant::UInt

QMetaType::UInt

a uint

QVariant::ULongLong

QMetaType::ULongLong

a qulonglong

QVariant::Url

QMetaType::QUrl

a QUrl

QVariant::Vector2D

QMetaType::QVector2D

a QVector2D

QVariant::Vector3D

QMetaType::QVector3D

a QVector3D

QVariant::Vector4D

QMetaType::QVector4D

a QVector4D

QVariant::UserType

QMetaType::User

Base value for user-defined types.

Obsolete Member Function Documentation

 
[explicit] QVariant::QVariant(QVariant::Type type)

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use the constructor taking a QMetaType instead.

Constructs an uninitialized variant of type type. This will create a variant in a special null state that if accessed will return a default constructed value of the type.

See Also

See also isNull()

bool QVariant::canConvert(int targetTypeId) const

This function is deprecated since 6.0. We strongly advise against using it in new code.

This is an overloaded function.

Use canConvert(QMetaType(targetTypeId)) instead.

See Also
bool QVariant::convert(int targetTypeId)

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use convert(QMetaType(targetTypeId)) instead.

Casts the variant to the requested type, targetTypeId. If the cast cannot be done, the variant is still changed to the requested type, but is left in a cleared null state similar to that constructed by QVariant(Type).

Returns true if the current type of the variant was successfully cast; otherwise returns false.

A QVariant containing a pointer to a type derived from QObject will also convert and return true for this function if a qobject_cast to the type described by targetTypeId would succeed. Note that this only works for QObject subclasses which use the Q_OBJECT macro.

converting QVariants that are null due to not being initialized or having failed a previous conversion will always fail, changing the type, remaining null, and returning false.

See Also

See also canConvert(), clear()

[static] QVariant::Type QVariant::nameToType(const char *name)

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use QMetaType::fromName(name).id() instead

Converts the string representation of the storage type given in name, to its enum representation.

If the string representation cannot be converted to any enum representation, the variant is set to Invalid.

QVariant::Type QVariant::type() const

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use typeId() or metaType() instead.

Returns the storage type of the value stored in the variant. Although this function is declared as returning QVariant::Type, the return value should be interpreted as QMetaType::Type. In particular, QVariant::UserType is returned here only if the value is equal or greater than QMetaType::User.

Note that return values in the ranges QVariant::Char through QVariant::RegExp and QVariant::Font through QVariant::Transform correspond to the values in the ranges QMetaType::QChar through QMetaType::QRegularExpression and QMetaType::QFont through QMetaType::QQuaternion.

Pay particular attention when working with char and QChar variants. Note that there is no QVariant constructor specifically for type char, but there is one for QChar. For a variant of type QChar, this function returns QVariant::Char, which is the same as QMetaType::QChar, but for a variant of type char, this function returns QMetaType::Char, which is not the same as QVariant::Char.

Also note that the types void*, long, short, unsigned long, unsigned short, unsigned char, float, QObject*, and QWidget* are represented in QMetaType::Type but not in QVariant::Type, and they can be returned by this function. However, they are considered to be user defined types when tested against QVariant::Type.

To test whether an instance of QVariant contains a data type that is compatible with the data type you are interested in, use canConvert().

See Also

See also userType(), metaType()

[static] const char *QVariant::typeToName(int typeId)

This function is deprecated since 6.0. We strongly advise against using it in new code.

Use QMetaType(typeId).name() instead.

Converts the int representation of the storage type, typeId, to its string representation.

Returns nullptr if the type is QMetaType::UnknownType or doesn't exist.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+