uniform_int::uniform_int
Constructs the distribution.
explicit uniform_int(result_type min0 = 0, result_type max0 = 9);
Parameters
min0
The lower bound for random values.max0
The upper bound for random values.
Remarks
Precondition: min0 < max0
The constructor constructs an object whose stored value stored_min holds the value min0 and whose stored value stored_max holds the value max0.
Example
// std_tr1__random__uniform_int_construct.cpp
// compile with: /EHsc
#include <random>
#include <iostream>
typedef std::mt19937 Myeng;
typedef std::uniform_int<unsigned int> Myceng;
int main()
{
Myeng eng;
Myceng ceng(1, 1 << 15);
Myceng::input_type engval = eng();
Myceng::result_type compval = ceng(eng);
compval = compval; // to quiet "unused" warnings
engval = engval;
std::cout << "min == " << ceng.min() << std::endl;
std::cout << "max == " << ceng.max() << std::endl;
ceng.reset(); // discard any cached values
std::cout << "a random value == " << ceng(eng) << std::endl;
std::cout << "a random value == " << ceng(eng) << std::endl;
std::cout << "a random value == " << ceng(eng) << std::endl;
return (0);
}
min == 1 max == 32768 a random value == 29681 a random value == 27362 a random value == 4162
Requirements
Header: <random>
Namespace: std