Descrição
Ele retorna quando a execução do thread é concluída.
Declaração
A seguir está a declaração para a função std :: thread :: detach.
void join();
C ++ 11
void join();
Parâmetros
Nenhum
Valor de retorno
Nenhum
Exceções
No-throw guarantee - nunca lança exceções.
Corridas de dados
O objeto é acessado.
Exemplo
No exemplo abaixo 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));
}
A saída deve ser assim -
Starting thread caller.
Starting thread.
Exiting thread caller.
Exiting previous thread.