<random>

公共成员函数 (public member function)
<random>

std::geometric_distribution::max

result_type max() const;
最大值
返回成员 operator() 可能返回的值的范围的最小上界。

由于 geometric_distribution 是一个右边界无限的分布,该函数返回result_type:
numeric_limits<result_type>::max()

参数



返回值

分布范围的最小上界值,该值可以用 result_type 表示。
result_type是一个成员类型,定义为第一个类模板参数的别名 (IntType).

复杂度

常量。

另见