gpt4 book ai didi

c++ - 如何使用多线程制作一个简单的 Qt 控制台应用程序?

转载 作者:搜寻专家 更新时间:2023-10-31 00:38:10 27 4
gpt4 key购买 nike

我很难理解如何尽可能简单地工作多线程 Qt 控制台 应用程序。

我已经阅读了大量有关如何使用 QThread 类的资料。他们中的一些人说 QThread 的子类,其他人说使用 QThread 的工作类包装器。

经过多次尝试,我仍然无法创建一个工作的多线程Qt 控制台应用程序。

现在我不需要任何花哨的 Qt Gui。

有人可以帮我填写示例代码的线程部分吗?它一次只从文本文件中读取一行,其想法是目前不忙的每个线程(我想使用 4 个线程)将尽快使用 std::cout 将该行打印到 stdout。只是打印它,现在没有其他花哨的处理东西来保持对我来说很简单。

#include <QCoreApplication>
#include <QFile>
#include <iostream>

/* QThread stuff here */
/* Don't know how to make it */

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

/* Create four instances of threads here and
put them to wait readed lines */

QFile file("file.txt");
file.open(QIODevice::ReadOnly | QIODevice::Text);

while(!file.atEnd()) {
/* Read lines here but where should they be saved?
Into a global variable like QList<QByteArray> list ?
So that each thread can read them from there or where ???? */

??? = file.readLine();
}
file.close();
a.exit();
}

最佳答案

将功能放入 QObject 的插槽中

关键点是:

  1. 请记住,每个 QObject 都有一个它“居住”在其中的特定 thread()。每个线程都可以在那里运行一个事件循环。此事件循环会将发送到此线程中“存在”的对象的事件传递。

  2. 不要派生自QThread。启动库存 QThreads。它们将在 QThread::run() 的默认实现中启动偶数事件循环。

  3. 在插槽(或 Q_INVOKABLE)方法中实现您的功能。该类显然必须派生自 QObject

  4. 当您将信号(使用信号槽连接,而不是直接)发送到 #3 中的槽时,奇迹就会发生。从在 GUI 线程中运行的通知程序到通知对象的连接是使用 Qt::QueuedConnection 自动完成的,因为发送方和接收方对象位于不同的线程中。

    向此类对象发送信号会导致将事件发布到对象所在线程的事件队列中。事件循环的事件调度程序将挑选这些事件并调用适当的槽。这就是 Qt 的强大功能 - 可以为您完成很多有用的事情。

请注意,没有“当前繁忙”线程的概念。线程执行驻留在其中的对象的短槽。如果您想在“忙”和“不忙”状态之间移动线程,那么您需要额外的代码。

实现它的另一种方法是从 QRunnable 派生并使用 QThreadPool。那是在另一个答案中。

main.cpp

#include <QCoreApplication>
#include <QTextStream>
#include <QThread>
#include <QFile>
#include <cstdio>

class Notified : public QObject {
Q_OBJECT
QTextStream m_out;
public:
Q_SLOT void notify(const QString & text) {
m_out << "(" << this << ") " << text << endl;
}
Notified(QObject *parent = 0) : QObject(parent), m_out(stdout) {}
};

class Notifier : public QObject {
Q_OBJECT
Q_SIGNAL void notification(const QString &);
public:
Notifier(QObject *parent = 0) : QObject(parent) {}
void notifyLines(const QString & filePath) {
QFile file(filePath);
file.open(QIODevice::ReadOnly | QIODevice::Text);
while (! file.atEnd()) {
emit notification(file.readLine());
}
file.close();
}
};

int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QObjectList notifieds;
QList<QThread*> threads;
Notifier notifier;

for (int i = 0; i < 4; ++i) {
QThread * thread = new QThread(&a); // thread owned by the application object
Notified * notified = new Notified; // can't have an owner before it's moved to another thread
notified->moveToThread(thread);
thread->start();
notifieds << notified;
threads << thread;
notified->connect(&notifier, SIGNAL(notification(QString)), SLOT(notify(QString)));
}

notifier.notifyLines("file.txt");

foreach (QThread *thread, threads) {
thread->quit();
thread->wait();
}
foreach (QObject *notified, notifieds) delete notified;

a.exit();
}

#include "main.moc"

关于c++ - 如何使用多线程制作一个简单的 Qt 控制台应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18656361/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com