2

我想在主应用程序的单独线程中运行代码,为此我创建了一些文件:

线程2.h

#ifndef THREAD2_H
#define THREAD2_H
#include <QThread>

class thread2 : public QThread
{
    Q_OBJECT

public:
    thread2();

protected:
    void run();

};

#endif // THREAD2_H

线程2.cpp

#include "thread2.h"

thread2::thread2()
{
    //qDebug("dfd");
}
void thread2::run()
{
    int test = 0;
}

主文件名为 main.cpp

#include <QApplication>
#include <QThread>
#include "thread1.cpp"
#include "thread2.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    thread2::run();

    return a.exec();
}

但它不起作用...

Qt Creator 告诉我:“不能在没有对象的情况下调用成员函数‘virtual void thread2::run()’”

谢谢 !

4

2 回答 2

7

像这样调用它:thread2::run()是调用static函数的方式,但事实run()并非如此。

此外,要启动一个不run()显式调用该方法的线程,您需要创建一个线程对象并调用start()它,它应该run()在适当的线程中调用您的方法:

thread2 thread;
thread.start()
...
于 2012-11-29T17:48:42.413 回答
2

一个简单的线程类,允许您将指针传递给函数,如下所示:

typedef struct TThread_tag{
int (*funct)(int, void*);
char* Name;
int Flags;
}TThread;

 class Thread : public QThread {
 public:
   TThread ThreadInfoParm;
   void setFunction(TThread* ThreadInfoIn) 
   {
      ThreadInfoParm.funct = ThreadInfoIn->funct;   
   }
 protected:
    void run() 
    {
      ThreadInfoParm.funct(0, 0);   
     }
    };

 TThread* ThreadInfo = (TThread*)Parameter;
 //Create the thread objedt
 Thread* thread = new Thread;
 thread->setFunction(ThreadInfo);//Set the thread info
 thread->start();  //start the thread
于 2013-09-17T15:44:40.367 回答