• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <random>

    std::random_device::min

    static constexpr result_type min();
    

    概要

    生成する値の最小値を取得する。

    戻り値

    numeric_limits<result_type>::min()

    計算量

    定数時間

    #include <iostream>
    #include <random>
    
    int main()
    {
      unsigned int min_value = std::random_device::min();
      std::cout << min_value << std::endl;
    }
    

    出力

    0
    

    バージョン

    言語

    • C++11

    処理系

    参照