operator<<(std::binomial_distribution), operator>>(std::binomial_distribution)
来自cppreference.com
< cpp | numeric | random | binomial distribution
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template< class CharT, class Traits, class ResultType > std::basic_ostream<CharT,Traits>& operator<<( std::basic_ostream<CharT,Traits>& ost, |
(1) | |
template< class CharT, class Traits, class ResultType > std::basic_istream<CharT,Traits>& operator>>( std::basic_istream<CharT,Traits>& ist, |
(2) | |
执行流输入和输出操作的伪随机数分布
1) d
.原文:
Performs stream input and output operations on pseudo-random number distribution
d
.ost
的文字表述写入一个文本表示的分布参数和内部状态。格式化标志和填充字符的ost
是不变的.原文:
Writes a textual representation of the distribution parameters and internal state to
ost
as textual representation. The formatting flags and fill character of ost
are unchanged.的分布参数和内部状态恢复的数据读取
ist
。 ist
是不变的格式化标志。已写入的数据必须使用流具有相同的区域,CharT
Traits
模板参数,否则该行为是未定义的。如果遇到错误的输入,ist.setstate(std::ios::failbit)被调用,它可能会引发std::ios_base::failure。 d
在这种情况下,是不变的.原文:
Restores the distribution parameters and internal state with data read from
ist
. The formatting flags of ist
are unchanged. The data must have been written using a stream with the same locale, CharT
and Traits
template parameters, otherwise the behavior is undefined. If bad input is encountered, ist.setstate(std::ios::failbit) is called, which may throw std::ios_base::failure. d
is unchanged in that case.[编辑] 参数
ost | - | 将数据插入到输出流
|
ist | - | 输入的数据流中提取
原文: input stream to extract the data from |
d | - | 分布的伪随机数
|
[编辑] 返回值
1) ost
2) ist
[编辑] 例外
1)(无)
2) 可能会引发std::ios_base::failure上的糟糕输入.
原文:
may throw std::ios_base::failure on bad input.