[Qt]QObject::connect: Cannot queue arguments of type 'QString&'的解决方法

参考:https://blog.csdn.net/tokary/article/details/5777141
遇到的问题是,在主线程和子线程中,通过信号与槽发送QString,遇到

QObject::connect: Cannot queue arguments of type 'QString&'

原博客内容是这样:

it is not allowed to pass non-const value across threads.
that means you can’t modify the argument ‘s value across threads.
★Solution: add const before argument’s type

翻译过来就是:
不允许跨线程传递非const值(应该说是非const引用,个人理解)。
解决方法就是要么是const引用,要么是值传递

个人测试过:在同一线程内非const引用,进行传递,是没有问题的。上述问题是在两个线程中,非const引用出的问题。

你可能感兴趣的:(QT,C++)