QObject::connect: Cannot queue arguments of type 'XXX'

1 开发环境

    Win10(64bit)

    Qt5.4.2(64bit)

2 错误描述

    在不同线程之间通过信号/槽来传递自定义数据类型QList<RootNode>的时候,提示错误:

QObject::connect: Cannot queue arguments of type 'QList<RootNode>'
(Make sure 'QList<RootNode>' is registered using qRegisterMetaType().)
    在同一个线程中传递上述类型是没有错误的。

3 解决方法

    根据参考资料[1]的提示,先包含头文件:

#include <QMetaType>
    然后注册自定义类:

qRegisterMetaType<QList<RootNode>>("QList<RootNode>");
    注意:其实自定义的类型只是RootNode而已,QList是Qt自带的类型。由于信号/槽中使用到const QList<RootNode>&类型的参数,因此需要注销QList<RootNode>类型!

参考资料

[1]QObject::connect: Cannot queue arguments of type "xxx",(Make sure "xxx" is registed using qRegisterMetaType().)原因及解决方法

你可能感兴趣的:(QObject::connect: Cannot queue arguments of type 'XXX')