• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <chrono>

    std::chrono_literals::sリテラル

    namespace std {
    
    inline namespace literals {
    inline namespace chrono_literals {
      constexpr chrono::seconds
        operator "" s(unsigned long long x);  // (1)
    
      constexpr chrono::duration<unspecified>
        operator "" s(long double x);         // (2)
    }}
    
    namespace chrono {
    using namespace literals::chrono_literals;
    } // namespace chrono
    
    }  // namespace std
    

    概要

    秒単位の値を表すdurationクラスのリテラル。

    • (1) : 整数型の秒リテラル
    • (2) : 浮動小数点型の秒リテラル

    戻り値

    • (1) : chrono::seconds(x)
    • (2) : chrono::duration<unspecified>(x)

    #include <iostream>
    #include <chrono>
    
    int main()
    {
      using namespace std::literals::chrono_literals;
    
      auto seconds_i = 3s;   // 整数型の3秒
      auto seconds_f = 3.1s; // 浮動小数点型の3.1秒
    
      std::cout << seconds_i.count() << std::endl;
      std::cout << seconds_f.count() << std::endl;
    }
    

    出力

    3
    3.1
    

    バージョン

    言語

    • C++14

    処理系

    参照