gpt4 book ai didi

c++ - 等待 C++ 中的所有线程

转载 作者:可可西里 更新时间:2023-11-01 16:26:00 25 4
gpt4 key购买 nike

我在 C++ 中使用构造“线程”,并在递归函数中创建了可变数量的线程。我希望主线程等待所有这些。没有 WaitForMultipleObjects 怎么办?

最佳答案

看看example在 cplus 中。在 vector 中使用 emplace_back() 存储线程。最后你有一个带连接的循环。

std::vector<std::thread> threads;
//create threads
for (int i=1; i<=10; ++i)
threads.emplace_back(std::thread(increase_global,1000));
//wait for them to complete
for (auto& th : threads)
th.join();

关于c++ - 等待 C++ 中的所有线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30297465/

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