其他分享
首页 > 其他分享> > 如何使用std :: thread C生成多个调用相同函数的线程

如何使用std :: thread C生成多个调用相同函数的线程

作者:互联网

基本上我想要做的是编写一个生成多个线程的for循环.线程必须多次调用某个函数.换句话说,我需要每个线程在不同的对象上调用相同的函数.我怎么能用std :: thread c库做到这一点?

解决方法:

您可以简单地在循环中创建线程,每次传递不同的参数.在此示例中,它们存储在向量中,以便稍后可以将它们连接起来.

struct Foo {};

void bar(const Foo& f) { .... };

int main()
{
  std::vector<std::thread> threads;
  for (int i = 0; i < 10; ++i)
    threads.push_back(std::thread(bar, Foo()));

  // do some other stuff

  // loop again to join the threads
  for (auto& t : threads)
    t.join();
}

标签:stdthread,c,c11,multithreading
来源: https://codeday.me/bug/20190825/1718726.html