Namespaces
Variants

std::poisson_distribution<IntType>:: poisson_distribution

From cppreference.net
poisson_distribution ( ) : poisson_distribution ( 1.0 ) { }
(1) (自 C++11 起)
explicit poisson_distribution ( double mean ) ;
(2) (自 C++11 起)
explicit poisson_distribution ( const param_type & params ) ;
(3) (自 C++11 起)

构造一个新的分布对象。

1) 使用 1.0 作为分布参数。
2) 使用 mean 作为分布参数。
3) 使用 params 作为分布参数。

参数

mean - μ 分布参数(分布的均值)
params - 分布参数集

注释

要求 0 < mean

缺陷报告

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

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