QThread Class Reference
The QThread class provides platform-independent threads.
- #include <QThread>
Inherits: QObject.
Inherited by:
Detailed Description
The QThread class provides platform-independent threads.
A QThread represents a separate thread of control within the program; it shares data with all the other threads within the process but executes independently in the way that a separate program does on a multitasking operating system. Instead of starting in main(), QThreads begin executing in run(). By default, run() starts the event loop by calling exec() (see below). To create your own threads, subclass QThread and reimplement run(). For example:
- {
- public:
- void run();
- };
- void MyThread::run()
- {
- QTcpSocket socket;
- // connect QTcpSocket's signals somewhere meaningful
- ...
- socket.connectToHost(hostName, portNumber);
- exec();
- }
This will create a QTcpSocket in the thread and then execute the thread's event loop. Use the start() method to begin execution. Execution ends when you return from run(), just as an application does when it leaves main(). QThread will notifiy you via a signal when the thread is started(), finished(), and terminated(), or you can use isFinished() and isRunning() to query the state of the thread. Use wait() to block until the thread has finished execution.
Each thread gets its own stack from the operating system. The operating system also determines the default size of the stack. You can use setStackSize() to set a custom stack size.
Each QThread can have its own event loop. You can start the event loop by calling exec(); you can stop it by calling exit() or quit(). Having an event loop in a thread makes it possible to connect signals from other threads to slots in this thread, using a mechanism called queued connections. It also makes it possible to use classes that require the event loop, such as QTimer and QTcpSocket, in the thread. Note, however, that it is not possible to use any widget classes in the thread.
In extreme cases, you may want to forcibly terminate() an executing thread. However, doing so is dangerous and discouraged. Please read the documentation for terminate() and setTerminationEnabled() for detailed information.
The static functions currentThreadId() and currentThread() return identifiers for the currently executing thread. The former returns a platform specific ID for the thread; the latter returns a QThread pointer.
QThread also provides platform independent sleep functions in varying resolutions. Use sleep() for full second resolution, msleep() for millisecond resolution, and usleep() for microsecond resolution.
See also Thread Support in Qt, QThreadStorage, QMutex, QSemaphore, QWaitCondition, Mandelbrot Example, Semaphores Example, and Wait Conditions Example.
Public Types
| Toggle details | enum QThread:: | PriorityPriority { IdlePriority , LowestPriority , LowPriority , NormalPriority , HighPriority , HighestPriority , TimeCriticalPriority , InheritPriority 7 ...} { IdlePriority , LowestPriority , LowPriority , NormalPriority , HighPriority , HighestPriority , TimeCriticalPriority , InheritPriority 7 } | |||||||||||||||||||||||||||
This enum type indicates how the operating system should schedule newly created threads.
| |||||||||||||||||||||||||||||
Look up this member in the source code. | |||||||||||||||||||||||||||||
Public Functions
| Toggle details | QThread | QThreadQThread ( QObject *parent=0 ) ( QObject *parent=0 ) |
Look up this member in the source code. | ||
| Toggle details | QThread | ~QThread~QThread () () |
Destroys the thread. Note that deleting a QThread object will not stop the execution of the thread it represents. Deleting a running QThread (i.e. isFinished() returns false) will probably result in a program crash. You can wait() on a thread to make sure that it has finished. | ||
Look up this member in the source code. | ||
| Toggle details | QThread * QThread | currentThreadcurrentThread () () [static] |
Returns a pointer to a QThread which represents the currently executing thread. | ||
Look up this member in the source code. | ||
| Toggle details | Qt::HANDLE QThread | currentThreadIdcurrentThreadId () () [static] |
Returns the thread handle of the currently executing thread. Warning: The handle returned by this function is used for internal purposes and should not be used in any application code. Warning: On Windows, the returned value is a pseudo-handle for the current thread. It can't be used for numerical comparison. i.e., this function returns the DWORD (Windows-Thread ID) returned by the Win32 function getCurrentThreadId(), not the HANDLE (Windows-Thread HANDLE) returned by the Win32 function getCurrentThread(). | ||
Look up this member in the source code. | ||
| Toggle details | int QThread | execexec () ()[protected] |
Look up this member in the source code. | ||
| Toggle details | void QThread | |
Tells the thread's event loop to exit with a return code. After calling this function, the thread leaves the event loop and returns from the call to QEventLoop::exec(). The QEventLoop::exec() function returns returnCode. By convention, a returnCode of 0 means success, any non-zero value indicates an error. Note that unlike the C library function of the same name, this function does return to the caller -- it is event processing that stops. No QEventLoops will be started anymore in this thread until QThread::exec() has been called again. If the eventloop in QThread::exec() is not running then the next call to QThread::exec() will also return immediately. See also quit() and QEventLoop. | ||
Look up this member in the source code. | ||
| Toggle details | int QThread | idealThreadCountidealThreadCount () () [static] |
Returns the ideal number of threads that can be run on the system. This is done querying the number of processor cores, both real and logical, in the system. This function returns -1 if the number of processor cores could not be detected. | ||
Look up this member in the source code. | ||
| Toggle details | bool QThread | isFinishedisFinished () ()const |
Returns true if the thread is finished; otherwise returns false. See also isRunning(). | ||
Look up this member in the source code. | ||
| Toggle details | bool QThread | isRunningisRunning () ()const |
Returns true if the thread is running; otherwise returns false. See also isFinished(). | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | msleepmsleep ( unsigned longmsecs ) ( unsigned longmsecs )[protected] |
Look up this member in the source code. | ||
| Toggle details | Priority QThread | prioritypriority () ()const |
Returns the priority for a running thread. If the thread is not running, this function returns InheritPriority. See also Priority, setPriority(), and start(). | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | runrun () () [virtual protected] |
Look up this member in the source code. | ||
| Toggle details | void QThread | setPrioritysetPriority ( Priority priority ) ( Priority priority ) |
This function sets the priority for a running thread. If the thread is not running, this function does nothing and returns immediately. Use start() to start a thread with a specific priority. The priority argument can be any value in the QThread::Priority enum except for InheritPriorty. The effect of the priority parameter is dependent on the operating system's scheduling policy. In particular, the priority will be ignored on systems that do not support thread priorities (such as on Linux, see http://linux.die.net/man/2/sched_setscheduler for more details). | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | setStackSizesetStackSize ( uint stackSize ) ( uint stackSize ) |
Sets the maximum stack size for the thread to stackSize. If stackSize is greater than zero, the maximum stack size is set to stackSize bytes, otherwise the maximum stack size is automatically determined by the operating system. Warning: Most operating systems place minimum and maximum limits on thread stack sizes. The thread will fail to start if the stack size is outside these limits. See also stackSize(). | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | setTerminationEnabledsetTerminationEnabled ( bool enabled=true ) ( bool enabled=true )[protected] |
Enables or disables termination of the current thread based on the enabled parameter. The thread must have been started by QThread. When enabled is false, termination is disabled. Future calls to QThread::terminate() will return immediately without effect. Instead, the termination is deferred until termination is enabled. When enabled is true, termination is enabled. Future calls to QThread::terminate() will terminate the thread normally. If termination has been deferred (i.e. QThread::terminate() was called with termination disabled), this function will terminate the calling thread immediately. Note that this function will not return in this case. See also terminate(). | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | sleepsleep ( unsigned longsecs ) ( unsigned longsecs )[protected] |
Look up this member in the source code. | ||
| Toggle details | uint QThread | stackSizestackSize () ()const |
Returns the maximum stack size for the thread (if set with setStackSize()); otherwise returns zero. See also setStackSize(). | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | usleepusleep ( unsigned longusecs ) ( unsigned longusecs )[protected] |
Look up this member in the source code. | ||
| Toggle details | bool QThread | waitwait ( unsigned longtime=ULONG_MAX ) ( unsigned longtime=ULONG_MAX ) |
Blocks the thread until either of these conditions is met:
This provides similar functionality to the POSIX pthread_join() function. | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | yieldCurrentThreadyieldCurrentThread () () [static] |
Yields execution of the current thread to another runnable thread, if any. Note that the operating system decides to which thread to switch. | ||
Look up this member in the source code. | ||
| Toggle details | bool QThread | finishedfinished () ()const |
Use isFinished() instead. | ||
Look up this member in the source code. | ||
| Toggle details | bool QThread | runningrunning () ()const |
Use isRunning() instead. | ||
Look up this member in the source code. | ||
Signals
| Toggle details | void QThread | finishedfinished () () [signal] |
This signal is emitted when the thread has finished executing. See also started() and terminated(). | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | startedstarted () () [signal] |
This signal is emitted when the thread starts executing. See also finished() and terminated(). | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | terminatedterminated () () [signal] |
Look up this member in the source code. | ||
Public Slots
| Toggle details | void QThread | quitquit () () [slot] |
Tells the thread's event loop to exit with return code 0 (success). Equivalent to calling QThread::exit(0). This function does nothing if the thread does not have an event loop. See also exit() and QEventLoop. | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | startstart ( Priority priority=InheritPriority ) ( Priority priority=InheritPriority ) [slot] |
Begins execution of the thread by calling run(), which should be reimplemented in a QThread subclass to contain your code. The operating system will schedule the thread according to the priority parameter. If the thread is already running, this function does nothing. The effect of the priority parameter is dependent on the operating system's scheduling policy. In particular, the priority will be ignored on systems that do not support thread priorities (such as on Linux, see http://linux.die.net/man/2/sched_setscheduler for more details). | ||
Look up this member in the source code. | ||
| Toggle details | void QThread | terminateterminate () () [slot] |
Terminates the execution of the thread. The thread may or may not be terminated immediately, depending on the operating systems scheduling policies. Use QThread::wait() after terminate() for synchronous termination. When the thread is terminated, all threads waiting for the thread to finish will be woken up. Warning: This function is dangerous and its use is discouraged. The thread can be terminated at any point in its code path. Threads can be terminated while modifying data. There is no chance for the thread to clean up after itself, unlock any held mutexes, etc. In short, use this function only if absolutely necessary. Termination can be explicitly enabled or disabled by calling QThread::setTerminationEnabled(). Calling this function while termination is disabled results in the termination being deferred, until termination is re-enabled. See the documentation of QThread::setTerminationEnabled() for more information. See also setTerminationEnabled(). | ||
Look up this member in the source code. | ||



Votes: 52
Coverage: Qt library 4.7, 4.8
Area 51 Engineer
27 notes
Subclassing no longer recommended way of using QThread
The documentation above still only gives a sample of using QThread by subclassing it. That is no longer needed, and actually no longer the recommended standard way of using QThread. QThread must be thought of as a class to manage a thread, but not as the actual code or object that runs in that thread. To use QThread to manage a thread, subclassing is hardly ever needed. Instead, create a worker object that derives from QObject, and implement a slot on that worker to perform the work you need doing.
Consider the following pattern as your default way to use QThread:
Alternatively, you could do:
Many more hints and details, including the pitfalls of using QThread in combination with signals and slots, can be found this must read wiki article [developer.qt.nokia.com].
[Revisions]