一、子线程访问主线程数据和方法
原文:Qt C++ 子线程访问主线程数据和方法 - lccsuse - 博客园
报错widgets must be creat in the GUI thread,子线程是不能访问GUI对象。
主要:
//Widget.cpp
s_thread = new SaveThread();
connect(this,SIGNAL(preper_save(Widget *)),s_thread,SLOT(getaddress(Widget *)));
emit preper_save(this);
s_thread ->start();
//SaveThread.h
Widget *w;
//SaveThread.cpp
void SaveThread::getaddress(Widget *p)
{
w=p;
}
二、线程与定时器
报错:
QObject: Cannot create children for a parent that is in a different thread.
(Parent is TestThread(0x709d88), parent's thread is QThread(0x6e8be8), current thread is TestThread(0x709d88)
QObject::killTimer: Timers cannot be stopped from another thread
刚开始只有主线程一个,TestThread的实例是在主线程中创建的,定时器在TestThread的构造函数中,所以也是在主线程中创建的。
当调用TestThread的start()方法时,这时有两个线程。定时器的start()方法是在另一个线程中,也就是TestThread中调用的。
创建和调用并不是在同一线程中,所以出现了错误。
根据以上的原理,Qt使用计时器的线程关系(thread affinity)来决定由哪个线程发出timeout()信号。正因如此,你必须在它所处的线程中start或stop该定时器,在其它线程中启动定时器是不可能的。
1.不能像下面这样给定时器指定父对象
|
否则会出现以下警告:
|
2.必须要加上事件循环exec()