operator<<(std::thread::id)
提供: cppreference.com
<tbody>
</tbody>
template< class CharT, class Traits > std::basic_ostream<CharT,Traits>& operator<<( std::basic_ostream<CharT,Traits>& ost, thread::id id ); |
(C++11以上) | |
スレッド識別子 id のテキスト表現を出力ストリーム ost に書き込みます。
2つのスレッド識別子が比較して等しい場合、それらは同じテキスト表現を持ちます。 等しくない場合、それらの表現は異なります。
引数
| ost | - | データを挿入する出力ストリーム |
| id | - | スレッド識別子 |
戻り値
ost。
例外
(なし)