operator==,!=(std::binomial_distribution)
来自cppreference.com
< cpp | numeric | random | binomial distribution
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template< class ResultType > bool operator==( const binomial_distribution<ResultType>& lhs, |
(1) | |
template< class ResultType > bool operator!=( const binomial_distribution<ResultType>& lhs, |
(2) | |
比较两个分布对象。两种分配对象时,参数值和内部状态是一样的,都是平等的.
1) 原文:
Compares two distribution objects. Two distribution objects are equal when parameter values and internal state is the same.
比较两个分布对象是否相等.
2) 原文:
Compares two distribution objects for equality.
比较两个分布不平等的对象.....
原文:
Compares two distribution objects for inequality.
[编辑] 参数
lhs, rhs | - | 分布要比较的对象
|
[编辑] 返回值
1)true的分配对象是相等的,false其他方式
2) 原文:
true if the distribution objects are equal, false otherwise
true的分配对象,如果不相等,false否则
原文:
true if the distribution objects are not equal, false otherwise
[编辑] 复杂性
恒定