QObject: Cannot create children for a parent that is in a different thread.

使用以下方法创建线程时:
QThread *thread = new QThread;
moveToThread(thread);
thread->start();
在槽里面的函数就在子线程中

1.解决QObject: Cannot create children for a parent that is in a different thread.

出现警告原因

在使用Qt多线程时,若在主线程给子线程创建了一个对象去使用,就会出现上述警告:
QObject: Cannot create children for a parent that is in a different thread.

解决办法

使用信号槽,在子线程里面创建对象.(在槽里面)

//不能在主线程new对象,给子线程使用

2.解决QObject::moveToThread: Cannot move objects with a parent

出错原因

使用moveToThread的对象不能父进程

解决办法

创建对象时,将不要给子线程赋父对象

你可能感兴趣的:(Qt,调试经验)