template <class UIntType, size_t w, size_t s, size_t r>class subtract_with_carry_engine;
成员类型 | 定义 | 说明 |
---|---|---|
result_type | 第一个模板参数 (UIntType) | 生成的数字的类型。 |
成员常量 | 定义 | 说明 |
---|---|---|
word_size | 第二个模板参数 (w) | 状态序列中每个字的位数。 |
short_lag | 第三个模板参数 (s) | 短滞后值。 |
long_lag | 第四个模板参数(r) | 长滞后值。 |
default_seed | 19780503u | 构造或播种时使用的默认种子。 |