在线文档教程
C++
数字 | Numerics

operators (std::linear_congruential_engine)

运算符=,%21=%28std::线性[医]同余[医]发动机%29

template< class UIntType, UIntType a, UIntType c, UIntType m > bool operator==( const linear_congruential_engine& lhs, const linear_congruential_engine& rhs (1)(since C++11)
template< class UIntType, UIntType a, UIntType c, UIntType m > bool operator!=( const linear_congruential_engine<UIntType,a,c,m>& lhs, const linear_congruential_engine<UIntType,a,c,m>& rhs (2)(since C++11)

比较两个伪随机数引擎。两个引擎是相等的,如果它们的内部状态是等价的,也就是说,如果它们会为任意数量的调用生成等价的值。operator()...

参数

lhs, rhs-engines to compare

返回值

1%29true如果引擎是等价的,false否则。

2%29true如果引擎不相等,false否则。

例外

%280%29

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cpPreference.com/w/cpp/数值/随机/线性[医]同余[医]发动机/操作员[医]CMP