namespace std {
namespace this_thread {
thread::id get_id() noexcept;
}}
概要
現スレッドのスレッド識別子を取得する。
戻り値
現在のスレッド、すなわちこの関数を呼び出したスレッドのスレッド識別子を返す。
この関数の戻り値は、デフォルト構築されたthread::id
オブジェクトとは必ず異なる。
例外
送出しない。
例
#include <iostream>
#include <thread>
int main()
{
std::cout << "thread_id=" << std::this_thread::get_id() << std::endl;
return 0;
}
出力例
thread_id=538af0
バージョン
言語
- C++11
処理系
- Clang:
- GCC: 4.6.3 ✅, 4.7.0 ✅
- ICC:
- Visual C++: 2012 ✅, 2013 ✅, 2015 ✅