operator==,!=(std::linear_congruential_engine)

 
 
数值库
常用数学函数
数学特殊函数 (C++17)
数学常数 (C++20)
浮点环境 (C++11)
复数
数值数组
伪随机数生成
编译时有理数算术 (C++11)
数值算法
(C++17)
(C++17)
插值
(C++20)
(C++20)
通用数值运算
(C++11)
位操作
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
 
 
 
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 );
(1) (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) (C++11 起)

比较二个伪随机数引擎。若其内部状态等价,即对任何数量的 operator() 调用都会生成相等的值,则二个引擎相等。

参数

lhs, rhs - 要比较的引擎

返回值

1) 若引擎等价则为 true ,否则为 false
2) 若引擎不等价则为 true ,否则为 false

异常

(无)