• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <chrono>

    std::chrono::current_zone

    namespace std::chrono {
      const time_zone* current_zone();
    }
    

    概要

    現在のタイムゾーンを取得する。

    この関数は、そのコンピュータに設定されているローカルタイムゾーンへのポインタを返す。

    戻り値

    備考

    • WindowsおよびLinux系OSでは、環境変数TZに設定されたタイムゾーンが返される

    #include <iostream>
    #include <chrono>
    
    namespace chrono = std::chrono;
    
    int main()
    {
      const chrono::time_zone* tz = chrono::current_zone();
      std::cout << tz->name() << std::endl;
    }
    

    出力例

    Asia/Tokyo
    

    バージョン

    言語

    • C++20

    処理系