std::binomial_distribution<IntType>::binomial_distribution
来自cppreference.com
< cpp | numeric | random | binomial distribution
binomial_distribution() : binomial_distribution(1) {} |
(1) | (C++11 起) |
explicit binomial_distribution( IntType t, double p = 0.5 ); |
(2) | (C++11 起) |
explicit binomial_distribution( const param_type& params ); |
(3) | (C++11 起) |
构造新的分布对象。 (2) 以 t
和 p
为分布参数, (3) 以 params
为分布参数。
参数
t | - | t 分布参数(试验次数) |
p | - | p 分布参数(试验生成 true 的概率)、 |
params | - | 分布参数集 |
注意
要求 0 ≤ p ≤ 1 且 0 ≤ t 。
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
DR | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
P0935R0 | C++11 | 默认构造函数曾为 explicit | 使之为隐式 |