std::jthread:: get_id
From cppreference.net
C++
Concurrency support library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::jthread
| Member functions | ||||
| Observers | ||||
|
jthread::get_id
|
||||
| Operations | ||||
| Stop token handling | ||||
| Non-member functions | ||||
|
std
::
jthread
::
id
get_id
(
)
const
noexcept
;
|
(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
の公開メンバークラス)
|
|
|
スレッドが結合可能かどうか、すなわち並列コンテキストで実行されている可能性があるかどうかをチェックする
(公開メンバー関数) |