Skip to content

Latest commit

 

History

History
76 lines (56 loc) · 1.17 KB

File metadata and controls

76 lines (56 loc) · 1.17 KB

operator()

  • random[meta header]
  • std[meta namespace]
  • mersenne_twister_engine[meta class]
  • function[meta id-type]
  • cpp11[meta cpp]
result_type operator()();

概要

乱数生成を行う。

効果

ランダムな値を生成し、内部状態を進める。

戻り値

ランダムな値を生成して返す。
値の範囲は[min(), max()]である。つまり、最小値と最大値両方を含む。

計算量

償却定数時間

#include <iostream>
#include <random>

int main()
{
  std::mt19937 engine;

  for (int i = 0; i < 10; ++i) {
    // 乱数生成
    std::uint32_t result = engine();

    std::cout << result << std::endl;
  }
}
  • engine()[color ff0000]
  • std::uint32_t[link /reference/cstdint/uint32_t.md]

出力例

3499211612
581869302
3890346734
3586334585
545404204
4161255391
3922919429
949333985
2715962298
1323567403

バージョン

言語

  • C++11

処理系

参照