码迷,mamicode.com
首页 > 其他好文 > 详细

QT 信号与槽 中传递自定义数据类型

时间:2021-06-11 18:06:00      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:自定义   nbsp   解决   can   信息   运行   出现   make   过程   

  使用QT 的信号与槽函数的过程,编译完成后,在运行程序是出现如下信息:

QObject::connect: Cannot queue arguments of type ‘myReadBuf‘
(Make sure ‘myReadBuf‘ is registered using qRegisterMetaType().)

 

解决方法:这是由于myReadBuf 是自定义的数据类型,系统不能很好的解析他。只需要在 使用connect的类的构造函数中加入如下代码即可:

   qRegisterMetaType<myReadBuf>("myReadBuf");//注册myReadBuf类型

QT 信号与槽 中传递自定义数据类型

标签:自定义   nbsp   解决   can   信息   运行   出现   make   过程   

原文地址:https://www.cnblogs.com/HumbleFish/p/14872537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!