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

std::seed_seq::param

STD:种子[医]SEQ::Param

template< class OutputIt > void param( OutputIt dest ) const;(since C++11)

输出存储在std::seed_seq对象。

参数

dest-output iterator such that the expression *dest=rt is valid for a value rt of result_type

类型要求

-输出必须符合输出器的要求。

返回值

%280%29

例外

只有在dest扔。

二次

#include <random> #include <iostream> #include <iterator> int main() { std::seed_seq s1 = {-1, 0, 1}; s1.param(std::ostream_iterator<int>(std::cout, " ") }

二次

产出:

二次

-1 0 1

二次

© cppreference.com

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

http://en.cpPreference.com/w/cpp/数值/随机/种子[医]SEQ/Param