gpt4 book ai didi

c++ - 带有 Qt 的 std::thread

转载 作者:行者123 更新时间:2023-12-02 10:19:23 24 4
gpt4 key购买 nike

作为一个学习示例,我正在尝试使用 Qt 而不是 QThreads 测试 std::thread。该应用程序是一个非常基本的 QMainWindow 应用程序,请参见下面的代码:

主窗口.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QString>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
Q_OBJECT

public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
[[ noreturn ]] void operator()();

private:
Ui::MainWindow *ui;
QString mm;
};

#endif // MAINWINDOW_H

主窗口.cpp
#include <QDebug>
#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}

MainWindow::~MainWindow()
{
delete ui;
}

[[ noreturn ]] void MainWindow::operator()()
{
qDebug()<< "thread runing";
int i =0;
while (1)
{
i++;
}
}

主.cpp
#include <thread>
#include <QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MainWindow mainWindow;
mainWindow.show();
std::thread t(&mainWindow);
t.detach();
return app.exec();
}

此代码无法编译并产生错误:
In file included from /home/faroub/Documents/development-projects/projects-c++/Qt-CMake-GUI/HelloWorld/main.cpp:1:0:
/usr/include/c++/7/thread: In instantiation of ‘struct std::thread::_Invoker<std::tuple<MainWindow*> >’:
/usr/include/c++/7/thread:127:22: required from ‘std::thread::thread(_Callable&&, _Args&& ...) [with _Callable = MainWindow*; _Args = {}]’
/home/faroub/Documents/development-projects/projects-c++/Qt-CMake-GUI/HelloWorld/main.cpp:10:30: required from here
/usr/include/c++/7/thread:240:2: error: no matching function for call to ‘std::thread::_Invoker<std::tuple<MainWindow*> >::_M_invoke(std::thread::_Invoker<std::tuple<MainWindow*> >::_Indices)’
operator()()
^~~~~~~~

任何想法为什么它不起作用?我必须使用 Qt 进行 QThreads 吗?它与QObject有关吗?先感谢您。

最佳答案

不要将指针传递给您的线程构造函数,而是将它传递给 std::reference_wrapper像这样:

std::thread t(std::ref(mainWindow));

该包装器来自 <functional>标题。

您尝试传递引用(按地址)是正确的,因为如果不是,那么 MainWindow 的拷贝会被创建(不是你想要的)。但是 std::thread 中没有有效的构造函数这将需要一个指向仿函数的指针并调用它。

关于c++ - 带有 Qt 的 std::thread,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60919039/

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