QThread::yieldCurrentThread()
时间: 2023-10-25 21:07:09 浏览: 162
QThread::yieldCurrentThread() 是一个 Qt 函数,它允许当前线程让出 CPU 时间片,以便其他线程有机会运行。调用该函数后,当前线程将进入就绪状态,等待系统重新调度它运行。该函数的作用是提高多线程程序的效率,避免某些线程长时间占用 CPU 资源,导致其他线程无法运行。但是,在使用 QThread::yieldCurrentThread() 时需要注意,如果没有其他线程处于就绪状态,当前线程仍然会占用 CPU 资源。因此,该函数的使用应该根据具体的情况进行考虑。
相关问题
qthread::msleep和qthread::sleep差别
qthread::msleep()和qthread::sleep()是QThread类中的两个成员函数,用于线程的睡眠操作。它们的主要区别在于时间单位的精度不同。
qthread::msleep()函数以毫秒为单位进行睡眠,可以精确到毫秒级别。而qthread::sleep()函数以秒为单位进行睡眠,只能精确到秒级别。
因此,如果需要更精确的睡眠时间,可以使用qthread::msleep()函数;如果对时间精度要求不高,可以使用qthread::sleep()函数。
void fetchFiles(const QString &path) { emit started(); QThread *thread = new QThread; FileSystemWorker *worker = new FileSystemWorker; worker->moveToThread(thread); connect(thread, &QThread::started, worker, [this, worker, path]() { worker->fetchFiles(path); }); connect(worker, &FileSystemWorker::fileFound, this, &CustomSysmodel::fileFound); connect(worker, &FileSystemWorker::finished, thread, &QThread::quit); connect(worker, &FileSystemWorker::finished, worker, &FileSystemWorker::deleteLater); connect(thread, &QThread::finished, thread, &QThread::deleteLater); connect(worker, &FileSystemWorker::finished, this, &CustomSysmodel::finished); thread->start(); thread->wait(); delete thread; delete worker;} wait()函数阻塞主线程, 改写为用Qt::QueuedConnection实现功能
改写后的代码如下:
```
void fetchFiles(const QString &path) {
emit started();
QThread *thread = new QThread;
FileSystemWorker *worker = new FileSystemWorker;
worker->moveToThread(thread);
connect(thread, &QThread::started, worker, [this, worker, path]() {
worker->fetchFiles(path);
});
connect(worker, &FileSystemWorker::fileFound, this, &CustomSysmodel::fileFound);
connect(worker, &FileSystemWorker::finished, thread, &QThread::quit);
connect(worker, &FileSystemWorker::finished, worker, &FileSystemWorker::deleteLater);
connect(thread, &QThread::finished, thread, &QThread::deleteLater);
connect(worker, &FileSystemWorker::finished, this, &CustomSysmodel::finished);
thread->start();
// 使用 Qt::QueuedConnection 将 wait() 改为槽函数
QMetaObject::invokeMethod(thread, &QThread::wait, Qt::QueuedConnection);
}
```
使用 Qt::QueuedConnection 将 wait() 函数改为槽函数,以避免阻塞主线程。当线程执行完成时,wait() 函数会被调用,等待线程结束。
阅读全文