对于用户定义的类型,有QVariant::userType()。它像 QVariant::type() 一样工作,但返回用户定义类型的类型 id 整数,而 QVariant::type() 总是返回 QVariant::UserType。
还有QVariant::typeName()将类型的名称作为字符串返回。
编辑 :
这可能取决于您如何设置 QVariant。不鼓励直接使用QVariant::QVariant(int type, const void * copy) 。
假设我有这样的三种类型:
class MyFirstType
{
public:
MyFirstType();
MyFirstType(const MyFirstType &other);
~MyFirstType();
MyFirstType(const QString &content);
QString content() const;
private:
QString m_content;
};
Q_DECLARE_METATYPE(MyFirstType);
第三个没有 Q_DECLARE_METATYPE
我将它们存储在 QVariant 中:
QString content = "Test";
MyFirstType first(content);
MySecondType second(content);
MyThirdType third(content);
QVariant firstVariant;
firstVariant.setValue(first);
QVariant secondVariant = QVariant::fromValue(second);
int myType = qRegisterMetaType<MyThirdType>("MyThirdType");
QVariant thirdVariant(myType, &third); // Here the type isn't checked against the data passed
qDebug() << "typeName for first :" << firstVariant.typeName();
qDebug() << "UserType :" << firstVariant.userType();
qDebug() << "Type : " << firstVariant.type();
[...]
我得到:
typeName for first : MyFirstType
UserType : 256
Type : QVariant::UserType
typeName for second : MySecondType
UserType : 257
Type : QVariant::UserType
typeName for third : MyThirdType
UserType : 258
Type : QVariant::UserType