<random>

函数模板 (function template)
<random>

std::关系运算符

相等 (1)
template <class IntType>bool operator== ( const bernoulli_distribution<IntType>& lhs,                  const bernoulli_distribution<IntType>& rhs );
不等 (2)
template <class IntType>bool operator!= ( const bernoulli_distribution<IntType>& lhs,                  const bernoulli_distribution<IntType>& rhs );
关系运算符
lhsrhs两个bernoulli_distribution对象执行适当的相等或不相等比较操作。

当使用相等的生成器调用其operator()时,如果两个分布具有相同的参数和内部状态(如果有),它们就会相等,从而产生相同的随机数序列。

参数

lhs, rhs
作为操作符左右两边的bernoulli_distribution对象,它们都具有相同的模板参数(IntType).

返回值

真 (true)如果条件成立,则为 true,并且假 (false)否则为 false。

另见