函数模板
<random>

std::关系运算符

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

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

参数

lhs, rhs
chi_squared_distribution 对象(分别位于运算符的左侧和右侧),都具有相同的模板参数(IntType).

返回值

true如果条件成立,则为 true,并且false否则为 false。

另见