std::independent_bits_engine<Engine,W,UIntType>::independent_bits_engine
来自 cppreference.com
< cpp | numeric | random | independent bits engine
independent_bits_engine(); |
(1) | (自 C++11) |
explicit independent_bits_engine( result_type s ); |
(2) | (自 C++11) |
template< class Sseq > explicit independent_bits_engine( Sseq& seq ); |
(3) | (自 C++11) |
explicit independent_bits_engine( const Engine& e ); |
(4) | (自 C++11) |
explicit independent_bits_engine( Engine&& e ); |
(5) | (自 C++11) |
构造新的伪随机引擎适配器。
1) 默认构造函数。底层引擎也是默认构造的。
2) 使用 s 构造底层引擎。
3) 使用种子序列 seq 构造底层引擎。此构造函数仅在
Sseq
符合 SeedSequence 时参与重载解析。特别是,如果 Sseq
可以隐式转换为 result_type
,则此构造函数不参与重载解析。4) 使用 e 的副本构造底层引擎。
5) 使用 e 移动构造底层引擎。 e 之后将持有未指定但有效的状态。
[编辑] 参数
s | - | 用于构造底层引擎的整数值 |
seq | - | 用于构造底层引擎的种子序列 |
e | - | 用于初始化的伪随机数引擎 |
[编辑] 示例
运行此代码
#include <iostream> #include <random> int main() { auto print = [](auto rem, auto engine, int count) { std::cout << rem << ": "; for (int i {}; i != count; ++i) std::cout << static_cast<unsigned>(engine()) << ' '; std::cout << '\n'; }; std::independent_bits_engine<std::mt19937, /*bits*/ 1, unsigned short> e1; // default-constructed print("e1", e1, 8); std::independent_bits_engine<std::mt19937, /*bits*/ 1, unsigned int> e2(1); // constructed with 1 print("e2", e2, 8); std::random_device rd; std::independent_bits_engine<std::mt19937, /*bits*/ 3, unsigned long> e3(rd()); // seeded with rd() print("e3", e3, 8); std::seed_seq s {3, 1, 4, 1, 5}; std::independent_bits_engine<std::mt19937, /*bits*/ 3, unsigned long long> e4(s); // seeded with seed-sequence s print("e4", e4, 8); }
可能的输出
e1: 0 0 0 1 0 1 1 1 e2: 1 1 0 0 1 1 1 1 e3: 3 1 5 4 3 2 3 4 e4: 0 2 4 4 4 3 3 6