Biblioteca de subprocesos de C ++: desconexió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 :: detach.

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 :: detach.

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

void independentThread() {
   std::cout << "Starting thread.\n";
   std::this_thread::sleep_for(std::chrono::seconds(2));
   std::cout << "Exiting previous thread.\n";
}

void threadCaller() {
   std::cout << "Starting thread caller.\n";
   std::thread t(independentThread);
   t.detach();
   std::this_thread::sleep_for(std::chrono::seconds(1));
   std::cout << "Exiting thread caller.\n";
}

int main() {
   threadCaller();
   std::this_thread::sleep_for(std::chrono::seconds(5));
}

La salida debería ser así:

Starting thread caller.
Starting thread.
Exiting thread caller.
Exiting previous thread.