A
QThread
instance represents a thread and provides the means to
start()
a thread, which will then execute the reimplementation of
QThread::run
()。
run()
implementation is for a thread what the
main()
entry point is for the application. All code executed in a call stack that starts in the
run()
function is executed by the new thread, and the thread finishes when the function returns.
QThread
emits signals to indicate that the thread started or finished executing.
To create a thread, subclass QThread and reimplement its run() function. For example:
class MyThread : public QThread { Q_OBJECT protected: void run(); }; void MyThread::run() { ... }
Then, create an instance of the thread object and call QThread::start (). Note that you must create the QApplication (或 QCoreApplication ) object before you can create a QThread .
The function will return immediately and the main thread will continue. The code that appears in the run() reimplementation will then be executed in a separate thread.
Creating threads is explained in more detail in the QThread 文档编制。
注意,
QCoreApplication::exec
() must always be called from the main thread (the thread that executes
main()
), not from a
QThread
. In GUI applications, the main thread is also called the GUI thread because it's the only thread that is allowed to perform GUI-related operations.