- random[meta header]
- std[meta namespace]
- uniform_int_distribution[meta class]
- function template[meta id-type]
- cpp11[meta cpp]
template <class URBG>
result_type operator()(URBG& g); // (1)
template <class URBG>
result_type operator()(URBG& g, const param_type& parm); // (2)
- (1) : コンストラクタで指定されたパラメータに基いて、乱数生成を行う
- (2) : コンストラクタで設定されたパラメータの代わりに、
param
を乱数生成のパラメータとして使用して乱数生成を行う
指定された値の範囲に基いて、等確率でランダムな値を生成して返す。
値の範囲は a <= i <= b
である。つまり、範囲の最小値と最大値、両方を含む。
償却定数時間(g()
の呼び出し回数)
#include <iostream>
#include <random>
int main()
{
std::random_device seed_gen;
std::mt19937 engine(seed_gen());
// (1)
{
std::uniform_int_distribution<> dist(0, 3);
for (int i = 0; i < 5; ++i) {
int result = dist(engine);
std::cout << result << std::endl;
}
}
// (2) パラメータを渡すバージョン
std::cout << std::endl;
{
using dist_type = std::uniform_int_distribution<>;
dist_type dist;
for (int i = 0; i < 5; ++i) {
dist_type::param_type param(0, 3);
int result = dist(engine, param);
std::cout << result << std::endl;
}
}
}
- dist(engine)[color ff0000]
- dist(engine, param)[color ff0000]
2
0
3
2
2
2
1
3
3
0
- C++11
- Clang: ??
- GCC: 4.7.2 [mark verified]
- ICC: ??
- Visual C++: ??
- P0346R1 A
<random>
Nomenclature Tweak- URNGをURBGに変更