今天有小伙伴问我个多线程的问题。他遇到了下面的错误:
QObject: Cannot create children for a parent that is in a different thread.
(Parent is QSerialPort(0x28b48038), parent's thread is QThread(0x21cec8e0), current thread is TurnableThread(0x28b664c0)
QObject::killTimer: Timers cannot be stopped from another thread
QObject::~QObject: Timers cannot be stopped from another thread
可以看到他在线程中,调用了QSerialPort 的东西,因为 QSerialPort 定义在类中,是有自己的线程,然后他让这个变量在这个线程run函数中使用了,就会出现这个问题。
status = m_serial->write(senData,18); //发送数据
而且他定义了定时器,ontime。也在线程中开启与关闭
fTimer->start();
目前我想到的解决方案:
方案一: 在qt中其他线程的不能直接在当前线程中,如果你非要使用的话,看看其他线程是否可以定义在QT run函数中,(功能比较不好),这样可以解决问题。
方案二: 不要直接写对应东西在线程中,可以通过emit 发送消息的方式,发送到外边一个函数执行,就可以解决这个问题,推荐使用第二个方案。
如果有不懂的同学可以私信我,相信有其他好的解决方案,可以写在下面评论中,大家一起学习与进步。