[ Web Proxy ]
URL:
Viewing: https://ru.cppreference.com/cpp/thread/thread/join [Back]  [Original]

std::thread::join cppreference.com
cppreference.com

std::thread::join

cppreference.com

<metanoindex/>

 
C++
(C++20)
(C++20)
(C++11)
(C++20)
/
(C++11)
(C++11)
(C++11)
(C++17)
 
(C++11)
(C++20)
(C++20)
this_thread
(C++11)
(C++11)
(C++11)
(C++11)
(C++20)
(C++11)( C++20)
(C++11)( C++20)
(C++11)( C++20)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)
(C++20)
(C++20)
(C++11)
(C++11)
(C++11)
(C++11)
 
 
<tbody> </tbody>
void join();
( C++11)
, *this .
:
Blocks the current thread until the thread identified by *this finishes its execution.
Google.
. .

()

()

std::system_error joinable() == false .
:
std::system_error if joinable() == false or an error occurs.
Google.
. .

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

void foo()
{
    // simulate expensive operation
    std::this_thread::sleep_for(std::chrono::seconds(1));
}

void bar()
{
    // simulate expensive operation
    std::this_thread::sleep_for(std::chrono::seconds(1));
}

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

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

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

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

:

starting first helper...
starting second helper...
waiting for helpers to finish...
done!

.


(public - std::{{{1}}}) []
, , ..
(public - std::{{{1}}}) []

Web Proxy Viewer  |  New URL  |  Original Page