std::jthread::get_id
[[nodiscard]] std::jthread::id get_id() const noexcept; | (since C++20) |
Возвращает значение типа std::jthread::id (которое является псевдонимом типа std::thread::id) идентифицирующее поток, связанный с *this.
Параметры
(нет)
Возвращаемое значение
Значение типа std::jthread::id идентифицирующее поток, связанный с *this. Если связанного потока нет, возвращается значение std::jthread::id, созданное по умолчанию.
Пример
#include <chrono>
#include <iostream>
#include <thread>
void foo()
{
std::this_thread::sleep_for(std::chrono::seconds(1));
}
int main()
{
std::jthread t1(foo);
std::jthread::id t1_id = t1.get_id();
std::jthread t2(foo);
std::jthread::id t2_id = t2.get_id();
std::cout << "t1's id: " << t1_id << '\n';
std::cout << "t2's id: " << t2_id << '\n';
t1.join();
t2.join();
std::cout << "t1's id after join: " << t1.get_id() << '\n';
std::cout << "t2's id after join: " << t2.get_id() << '\n';
}Возможный вывод:
t1's id: 140146221688576 t2's id: 140146213295872 t1's id after join: thread::id of a non-executing thread t2's id after join: thread::id of a non-executing thread
См. также
| представляет собой id потока (публичный член класса std::thread) |
|
| проверяет, является ли поток присоединяемым, т.е. потенциально выполняющимся в параллельном контексте (публичный член-функция) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/thread/jthread/get_id