公共静态成员函数
<random>

std::subtract_with_carry_engine::min

static constexpr result_type min();
最小值
返回成员 operator() 可能返回的最小值,对于 subtract_with_carry_engine 始终为零。

参数



返回值


result_type是一个成员类型,定义为第一个类模板参数的别名 (UIntType).

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// subtract_with_carry_engine::min and max
#include <iostream>
#include <chrono>
#include <random>

int main ()
{
  unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();
  std::subtract_with_carry_engine<unsigned,24,10,24> generator (seed);

  std::cout << generator() << " is a random number between ";
  std::cout << generator.min() << " and " << generator.max();

  return 0;
}

可能的输出
4121487 is a random number between 0 and 16777215


复杂度

无 (编译时常量)。

另见