Namespaces
Variants

std::uniform_real_distribution<RealType>:: uniform_real_distribution

From cppreference.net
uniform_real_distribution ( ) : uniform_real_distribution ( 0.0 ) { }
(1) (自 C++11 起)
explicit uniform_real_distribution ( RealType a, RealType b = 1.0 ) ;
(2) (自 C++11 起)
explicit uniform_real_distribution ( const param_type & params ) ;
(3) (自 C++11 起)

构造一个新的分布对象。

2) 使用 a b 作为分布参数。
3) 使用 params 作为分布参数。

参数

a - a 分布参数(最小值)
b - b 分布参数(最大值)
params - 分布参数集合

注释

要求满足 a ≤ b b - a ≤ std:: numeric_limits < RealType > :: max ( )

如果 a == b ,后续调用不接受 param_type 对象的 operator() 重载将导致未定义行为。

要在闭区间 [a,b] 上创建分布,可将 std:: nextafter ( b, std:: numeric_limits < RealType > :: max ( ) ) 作为第二个参数使用。

缺陷报告

以下行为变更缺陷报告被追溯应用于先前发布的C++标准。

缺陷报告 适用范围 发布时的行为 正确行为
P0935R0 C++11 默认构造函数为显式 改为隐式