首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > QT开发 >

如何让一个对象在线程中运行

2013-03-19 
怎么让一个对象在线程中运行本帖最后由 m15814478834 于 2013-03-08 09:52:55 编辑class cTaskThd : publi

怎么让一个对象在线程中运行
本帖最后由 m15814478834 于 2013-03-08 09:52:55 编辑

class cTaskThd : public QThread, public A
{
Q_OBJECT
public:
explicit cTaskThd(QObject *parent, int id);
    A.fun;
private:
int id;
qint32 getsocketDescriptor(cServer *ser);
void run();
};


好像只有run()函数是在线程中运行的
怎么让A.fun也在线程中运行呢?
[解决办法]
建立一个空线程类,然后把你对象moveToThread到那个线程类中。

热点排行