Biblioteca de subprocesos C ++: combinación de funciones

Descripción

Vuelve cuando se completa la ejecución del hilo.

Declaración

A continuación se muestra la declaración de la función std :: thread :: join.

void join();

C ++ 11

void join();

Parámetros

ninguna

Valor devuelto

ninguna

Excepciones

No-throw guarantee - nunca lanza excepciones.

Carreras de datos

Se accede al objeto.

Ejemplo

En el siguiente ejemplo para std :: thread :: join.

#include <iostream>
#include <thread>
#include <chrono>

void foo() {
   std::this_thread::sleep_for(std::chrono::seconds(1));
}

void bar() {
   std::this_thread::sleep_for(std::chrono::seconds(1));
}

int main() {
   std::cout << "starting helper...\n";
   std::thread helper1(foo);

   std::cout << "starting another helper...\n";
   std::thread helper2(bar);

   std::cout << "waiting for helpers to finish..." << std::endl;
   helper1.join();
   helper2.join();

   std::cout << "done!\n";
}

La salida debería ser así:

starting helper...
starting another helper...
waiting for helpers to finish...
done!