variant 中的困惑

QVariant v = qVariantFromValue((void *) a);
a = (A *) v.value<void *>();
发现新方法
Q_DECLARE_METATYPE ( Type )
This macro makes the type Type known to QMetaType. It is needed to use the type Type as a custom type in QVariant.
Ideally, this macro should be placed below the declaration of the class or struct. If that is not possible, it can be put in a private header file which has to be included every time that type is used in a QVariant.
Adding a Q_DECLARE_METATYPE() makes the type known to all template based functions, including QVariant. Note that if you intend to use the type in queued signal and slot connections, you also have to call qRegisterMetaType() since such connections are resolved at runtime.
This example shows a typical use case of Q_DECLARE_METATYPE():

struct MyStruct
{
int i;
...
};

Q_DECLARE_METATYPE(MyStruct)
If MyStruct is in a namespace, the Q_DECLARE_METATYPE() macro has to be outside the namespace:

namespace MyNamespace
{
...
}

Q_DECLARE_METATYPE(MyNamespace::MyStruct)

Since MyStruct is now known to QMetaType, it can be used in QVariant:

MyStruct s;
QVariant var;
var.setValue(s); // copy s into the variant

...

// retrieve the value
MyStruct s2 = var.value<MyStruct>();
以上的方法果然好用,在没有使用Q_DECLARE_METATYPE(QPushButton *)的时候
QVariant data = qVariantFromValue<QPushButton *>(temp);
报错误:
error: ‘qt_metatype_id’ is not a member of ‘QMetaTypeId<QPushButton*>’
但是使用了以后就没有了这个错误,类型还真的是要注册的。

Q_DECLARE_METATYPE(QPushButton *)

QPushButton *temp = new QPushButton;
temp->setText(QObject::tr("haha"));
QVariant data = qVariantFromValue<QPushButton *>(temp);
QPushButton *get = data.value<QPushButton *>();
qDebug() << get->text();
上面是测试代码,恩


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值