公有成员函数
<random>

std::uniform_int_distribution::max

result_type max() const;
最大值
返回成员operator()可能返回的值的最小上界,对于uniform_int_distribution,这是分布参数b

参数



返回值

分布参数 b
result_type是一个成员类型,定义为第一个类模板参数的别名 (IntType).

复杂度

常量。

另见