gpt4 book ai didi

c++ - 从同一线程移动分配 std::thread 对象是否可以

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

是否可以执行以下操作?

#include <iostream>
#include <thread>

std::thread th;

void foo()
{
std::cout << __func__ << std::endl;
th = std::thread(foo);
}

int main()
{
th = std::thread(foo);
th.join();
}

gcc 崩溃 -- http://coliru.stacked-crooked.com/a/3c926507ab0f8a5c .

我知道几乎没有必要这样做,但出于学术目的我想知道答案。

最佳答案

th = std::thread(foo);

您没有加入您的话题。

http://en.cppreference.com/w/cpp/thread/thread

destructs the thread object, underlying thread must be joined or detached

如另一个答案的评论所述,赋值与销毁具有相同的要求,因为先前的线程对象丢失了。

关于c++ - 从同一线程移动分配 std::thread 对象是否可以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39911078/

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