最終更新日時(UTC):
が更新

履歴 編集

class
<thread>

std::thread::id::formatter(C++23)

namespace std {
  template <class charT>
  class formatter<thread::id, charT>;
}

概要

thread::idクラスに対するstd::formatterクラステンプレートの特殊化。

フォーマットフラグとしては、以下を使用できる:

[[fill] [align] [width]]

#include <print>
#include <thread>

int main()
{
  std::println("{}", std::this_thread::get_id());
  std::println("{: >30}", std::this_thread::get_id());
}

出力

140474254677824
               140474254677824

バージョン

言語

  • C++23

処理系

備考

関連項目

参照