公有成员函数
<random>

std::discrete_distribution::max

result_type max() const;
最大值
返回由成员 operator() 可能返回的值的范围的最小上界,对于 discrete_distribution 来说,这是对象中指定的 probabilities 的数量。

参数



返回值

分布生成可能值的上界。
result_type是一个成员类型,定义为第一个类模板参数的别名 (IntType).

复杂度

常量。

另见