• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <chrono>

    std::chrono_literals::msリテラル

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

    概要

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

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

    戻り値

    • (1) : chrono::milliseconds(x)
    • (2) : chrono::duration<unspecified, milli>(x)

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

    出力

    3
    3.1
    

    バージョン

    言語

    • C++14

    処理系

    参照