gpt4 book ai didi

c++ - 在没有复制构造函数的对象的成员函数中启动 std::thread

转载 作者:行者123 更新时间:2023-11-30 03:21:38 25 4
gpt4 key购买 nike

我想在一个没有复制构造函数的对象的成员函数处启动一个std::thread。在成员函数处启动线程的标准方法(例如参见 Start thread with member function )需要一个复制构造函数。我以为我可以通过使用 std::ref 来解决这个问题(例如参见 std::thread pass by reference calls copy constructor ),但没有成功。

这是我的代码。线程 t1 有效,但 t2 无效。如果我尝试取消注释这两行,它会给出:

error: attempt to use a deleted function 
__invoke(_VSTD::move(_VSTD::get<0>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...); ^
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/thread:357:5: note:
in instantiation of function template specialization
'std::__1::__thread_execute<void (Dummy::*)(), std::__1::reference_wrapper<Dummy> , 1>'
requested here __thread_execute(*__p, _Index()); ^
etc.

如何直接在 print() 处启动线程,而不需要 uselessFunction

另外,我想更好地理解错误。编译器提示哪个“删除的函数”?

#include <iostream>
#include <thread>
using std::cout;
using std::endl;

class Dummy {
public:
std::atomic<bool> flag; // atomic kills implicitly created copy constructor
void print() { std::cout << "hello!" << std::endl; }
};

void uselessFunction(Dummy &d) {
d.print();
}

int main() {
Dummy d{};
std::thread t1(uselessFunction, std::ref(d)); // this works
// std::thread t2(&Dummy::print, std::ref(d)); // does not work
t1.join();
// t2.join();
}

最佳答案

std::thread 使用 std::invoke调用函数。 std::invoke 足够聪明,能够获取指向对象的指针并使用它调用成员函数。这意味着您可以将 t2 更改为

std::thread t2(&Dummy::print, &d);

并获得正确的行为。

关于c++ - 在没有复制构造函数的对象的成员函数中启动 std::thread,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52004854/

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