公有成员函数
<random>

std::cauchy_distribution::max

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

由于 cauchy_distribution 表示一个无界分布,该函数返回由result_type:
numeric_limits<result_type>::max()numeric_limits<result_type>::infinity() 表示的最大值,具体取决于实现。

参数



返回值

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

复杂度

常量。

另见