<random>

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

std::uniform_real_distribution::max

result_type max() const;
范围的上限 (Upper bound of range)
返回由成员 operator() 可能返回的值的最小上界,对于 uniform_real_distribution 而言,它是分布参数 b

此分布产生的可能值的区间是右开区间,因此,产生的可能值永远不会等于此值,而是小于此值。

参数



返回值

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

复杂度

常量。

另见