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到那个线程类中。